mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
add activate_wp_head hook to wp-activate.php, fixes #12166
git-svn-id: http://svn.automattic.com/wordpress/trunk@13073 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c7253edea9
commit
c644b16083
@ -18,6 +18,11 @@ if ( is_object( $wp_object_cache ) )
|
||||
|
||||
do_action("activate_header");
|
||||
|
||||
function do_activate_header() {
|
||||
do_action("activate_wp_head");
|
||||
}
|
||||
add_action( 'wp_head', 'do_activate_header' );
|
||||
|
||||
function wpmu_activate_stylesheet() {
|
||||
?>
|
||||
<style type="text/css">
|
||||
|
Loading…
Reference in New Issue
Block a user