Removing WordPress logo and texts from WP-Admin

This simple tricks can be useful for developers, who don’t like to see WordPress mark in their website UI.

To remove WordPress logo from WP-Admin top-left, just add this code to the functions.php of your theme.


add_action( 'admin_bar_menu', 'remove_wp_topleft_logo', 999 );
functionremove_wp_topleft_logo( $wp_admin_bar ) {
 $wp_admin_bar->remove_node( 'wp-logo' );
}

The result (before->after)

Screenshot from 2015-09-03 16:16:34Screenshot from 2015-09-03 16:17:13

 

 

 

 

 

 

 

To remove WordPress footer text: (“Thank you creating with WordPress” text) add this code to the functions.php of your theme.


function return_empty_footer_text($text){
return '';
}
add_filter('admin_footer_text','return_empty_footer_text');

Here is the result: (before->after)

Screenshot from 2015-09-03 16:21:25Screenshot from 2015-09-03 16:21:41

 

 

 

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.