Changeset 13468 for trunk/src/bp-core/bp-core-actions.php
- Timestamp:
- 05/03/2023 06:18:23 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-actions.php
r13461 r13468 73 73 add_action( 'bp_init', 'bp_register_taxonomies', 2 ); 74 74 add_action( 'bp_init', 'bp_setup_globals', 4 ); 75 add_action( 'bp_init', 'bp_register_nav', 5 ); 75 76 add_action( 'bp_init', 'bp_blocks_init', 10 ); 76 77 add_action( 'bp_init', 'bp_core_load_admin_bar_css', 12 ); … … 110 111 $key_actions['_bp_maybe_remove_redirect_canonical'] = 10; 111 112 $key_actions['bp_remove_adjacent_posts_rel_link'] = 10; 112 113 /**114 *115 * @todo This code should be moved to BP Classic.116 *117 */118 add_action( $hook, 'bp_core_set_uri_globals', 2 );119 113 } 120 114 … … 127 121 128 122 add_action( $hook, $action, $priority, $arguments ); 123 } 124 125 // Fire a deprecation notice for following deprecated hooks, if needed. 126 if ( ! function_exists( 'bp_classic' ) ) { 127 apply_filters_deprecated( 'bp_uri', array( '' ), '12.0.0' ); 128 do_action_deprecated( 'is_not_buddypress', array(), '12.0.0' ); 129 129 } 130 130 }
Note: See TracChangeset
for help on using the changeset viewer.