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)
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)






