WordPress后台移除页脚信息

WordPress后台的页面,在页脚有关于WordPress和版本信息,如下图:

如果把移除了,在 functions.php 中加入:

function change_footer_admin () {
 return ''; 
} 
add_filter('admin_footer_text', 'change_footer_admin', 9999); 
function change_footer_version() {
 return '';
 }
 add_filter( 'update_footer', 'change_footer_version', 9999);