Home › Forums › WordPress › Admin Customization › Remove logo, updates,comments, new content from admin bar.
- This topic has 0 replies, 1 voice, and was last updated 8 years, 3 months ago by Layer7web.
Viewing 0 reply threads
-
AuthorPosts
-
-
August 19, 2016 at 10:03 am #2404
Layer7webKeymasterPHP1234567add_action( 'admin_bar_menu', 'l7w_remove_wp_logo', 999 );function l7w_remove_wp_logo( $wp_admin_bar ) {$wp_admin_bar->remove_node( 'wp-logo' );$wp_admin_bar->remove_node( 'updates' );$wp_admin_bar->remove_node( 'comments' );$wp_admin_bar->remove_node( 'new-content' );}
-
-
AuthorPosts
Viewing 0 reply threads
You must be logged in to reply to this topic.
Comments are closed.