Changeset 10431
- Timestamp:
- 01/02/2016 04:38:37 PM (9 years ago)
- Location:
- trunk/src/bp-core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-actions.php
r10417 r10431 33 33 add_action( 'plugins_loaded', 'bp_loaded', 10 ); 34 34 add_action( 'init', 'bp_init', 10 ); 35 add_action( 'customize_register', 'bp_customize_register', 20 ); // After WP core. 35 36 add_action( 'parse_query', 'bp_parse_query', 2 ); // Early for overrides. 36 37 add_action( 'wp', 'bp_ready', 10 ); -
trunk/src/bp-core/bp-core-dependency.php
r10417 r10431 230 230 231 231 /** 232 * Fire the 'bp_customize_register' action when the Customizer has loaded, 233 * allowing scripts and styles to be initialized. 234 * 235 * @since 2.5.0 236 * 237 * @param WP_Customize_Manager $customizer Customizer instance. 238 */ 239 function bp_customize_register( WP_Customize_Manager $customizer ) { 240 241 /** 242 * Fires once the Customizer has loaded, allow scripts and styles to be initialized. 243 * 244 * @since 2.5.0 245 * 246 * @param WP_Customize_Manager $customizer Customizer instance. 247 */ 248 do_action( 'bp_customize_register', $customizer ); 249 } 250 251 /** 232 252 * Fire the 'bp_loaded' action, which fires after BP's core plugin files have been loaded. 233 253 *
Note: See TracChangeset
for help on using the changeset viewer.