Adicione isso ao seu functions.php
:
function my_footer_shh() {
remove_filter( 'update_footer', 'core_update_footer' );
}
add_action( 'admin_menu', 'my_footer_shh' );
ou, se você quiser ocultá-lo de todos, exceto administradores:
function my_footer_shh() {
if ( ! current_user_can('manage_options') ) { // 'update_core' may be more appropriate
remove_filter( 'update_footer', 'core_update_footer' );
}
}
add_action( 'admin_menu', 'my_footer_shh' );