Changeset 25537
- Timestamp:
- 09/21/2013 05:20:42 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-activate.php
r25001 r25537 22 22 $wp_object_cache->cache_enabled = false; 23 23 24 /** 25 * Fires before the Site Activation page is loaded. 26 * 27 * @since 3.0 28 */ 24 29 do_action( 'activate_header' ); 25 30 … … 30 35 */ 31 36 function do_activate_header() { 32 do_action( 'activate_wp_head' ); 37 /** 38 * Fires before the Site Activation page is loaded, but on the wp_head action. 39 * 40 * @since 3.0 41 */ 42 do_action( 'activate_wp_head' ); 33 43 } 34 44 add_action( 'wp_head', 'do_activate_header' );
Note: See TracChangeset
for help on using the changeset viewer.