Making WordPress.org


Ignore:
Timestamp:
12/15/2023 02:06:16 PM (10 months ago)
Author:
spiraltee
Message:

Tour: update from upstream

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/tour/class-tour.php

    r12982 r13062  
    1515        add_action( 'admin_enqueue_scripts', array( $class, 'enqueue_scripts' ) );
    1616        add_action( 'wp_enqueue_scripts', array( $class, 'enqueue_scripts' ) );
    17         add_action( 'gp_head', array( $class, 'enqueue_scripts' ) );
    1817        add_action( 'init', array( $class, 'register_post_type' ) );
    1918        add_action( 'init', array( $class, 'register_block_type' ) );
     
    2726        add_action( 'edit_form_after_editor', array( $class, 'edit_form_after_editor' ) );
    2827        add_filter( 'tour_list', array( $class, 'tour_list' ) );
    29         add_shortcode( 'tour_button', array( $class, 'show_tour_list' ) );
     28        add_shortcode( 'tour_list', array( $class, 'show_tour_list' ) );
    3029        add_action( 'admin_menu', array( $class, 'add_admin_menu' ) );
    3130        add_action( 'wp_footer', array( $class, 'output_tour_button' ) );
    3231        add_action( 'admin_footer', array( $class, 'output_tour_button' ) );
     32        add_action( 'gp_footer', array( $class, 'output_tour_button' ) );
    3333        add_action( 'show_user_profile', array( $class, 'show_user_profile' ) );
    3434        add_action( 'wp_before_admin_bar_render', array( $class, 'add_tours_menu_to_masterbar' ) );
Note: See TracChangeset for help on using the changeset viewer.