Changeset 10497 for trunk/src/bp-core/bp-core-dependency.php
- Timestamp:
- 02/03/2016 05:01:13 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-dependency.php
r10431 r10497 23 23 /** 24 24 * Fire the 'bp_include' action, where plugins should include files. 25 * 26 * @since 1.2.5 25 27 */ 26 28 function bp_include() { … … 36 38 /** 37 39 * Fire the 'bp_setup_components' action, where plugins should initialize components. 40 * 41 * @since 1.6.0 38 42 */ 39 43 function bp_setup_components() { … … 49 53 /** 50 54 * Fire the 'bp_setup_canonical_stack' action, where plugins should set up their canonical URL. 55 * 56 * @since 2.1.0 51 57 */ 52 58 function bp_setup_canonical_stack() { … … 92 98 /** 93 99 * Fire the 'bp_setup_globals' action, where plugins should initialize global settings. 100 * 101 * @since 1.2.0 94 102 */ 95 103 function bp_setup_globals() { … … 105 113 /** 106 114 * Fire the 'bp_setup_nav' action, where plugins should register their navigation items. 115 * 116 * @since 1.2.0 107 117 */ 108 118 function bp_setup_nav() { … … 118 128 /** 119 129 * Fire the 'bp_setup_admin_bar' action, where plugins should add items to the WP admin bar. 130 * 131 * @since 1.5.0 120 132 */ 121 133 function bp_setup_admin_bar() { … … 135 147 /** 136 148 * Fire the 'bp_setup_title' action, where plugins should modify the page title. 149 * 150 * @since 1.5.0 137 151 */ 138 152 function bp_setup_title() { … … 148 162 /** 149 163 * Fire the 'bp_register_widgets' action, where plugins should register widgets. 164 * 165 * @since 1.2.0 150 166 */ 151 167 function bp_setup_widgets() { … … 193 209 * 194 210 * We white-list the WordPress customizer which purposely loads the user early. 211 * 212 * @since 1.7.0 195 213 * 196 214 * @link https://buddypress.trac.wordpress.org/ticket/6046 … … 218 236 /** 219 237 * Fire the 'bp_init' action, BuddyPress's main initialization hook. 238 * 239 * @since 1.2.5 220 240 */ 221 241 function bp_init() { … … 253 273 * 254 274 * Attached to 'plugins_loaded'. 275 * 276 * @since 1.2.0 255 277 */ 256 278 function bp_loaded() { … … 268 290 * 269 291 * Attached to 'wp'. 292 * 293 * @since 1.6.0 270 294 */ 271 295 function bp_ready() { … … 284 308 * Attach potential template actions, such as catching form requests or routing 285 309 * custom URLs. 310 * 311 * @since 1.5.0 286 312 */ 287 313 function bp_actions() { … … 300 326 * Runs just after 'bp_actions'. Use this hook to attach your template 301 327 * loaders. 328 * 329 * @since 1.5.0 302 330 */ 303 331 function bp_screens() { … … 317 345 * 318 346 * Hooked to 'widgets_init'. 347 * 348 * @since 1.6.0 319 349 */ 320 350 function bp_widgets_init() { … … 334 364 * 335 365 * Hooked to 'wp_head'. 366 * 367 * @since 1.6.0 336 368 */ 337 369 function bp_head() { 370 371 /** 372 * Fires inside the 'bp_head' function, which runs on 'wp_head'. 373 * 374 * @since 1.6.0 375 */ 338 376 do_action ( 'bp_head' ); 339 377 }
Note: See TracChangeset
for help on using the changeset viewer.