- Timestamp:
- 12/15/2023 02:06:16 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/tour/class-tour.php
r12982 r13062 15 15 add_action( 'admin_enqueue_scripts', array( $class, 'enqueue_scripts' ) ); 16 16 add_action( 'wp_enqueue_scripts', array( $class, 'enqueue_scripts' ) ); 17 add_action( 'gp_head', array( $class, 'enqueue_scripts' ) );18 17 add_action( 'init', array( $class, 'register_post_type' ) ); 19 18 add_action( 'init', array( $class, 'register_block_type' ) ); … … 27 26 add_action( 'edit_form_after_editor', array( $class, 'edit_form_after_editor' ) ); 28 27 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' ) ); 30 29 add_action( 'admin_menu', array( $class, 'add_admin_menu' ) ); 31 30 add_action( 'wp_footer', array( $class, 'output_tour_button' ) ); 32 31 add_action( 'admin_footer', array( $class, 'output_tour_button' ) ); 32 add_action( 'gp_footer', array( $class, 'output_tour_button' ) ); 33 33 add_action( 'show_user_profile', array( $class, 'show_user_profile' ) ); 34 34 add_action( 'wp_before_admin_bar_render', array( $class, 'add_tours_menu_to_masterbar' ) );
Note: See TracChangeset
for help on using the changeset viewer.