怎么删除WordPress后台底部版权和版本号信息

当前使用的模板找到函数文件:functions.php,然后插入以下代码:

 

//删除WordPress后台底部版权信息
add_filter(‘admin_footer_text’, ‘_admin_footer_left_text’);
function _admin_footer_left_text($text) {
$text = ”;
return $text;
}

 

//删除WordPress后台版本号信息
add_filter(‘update_footer’, ‘_admin_footer_right_text’, 11);
function _admin_footer_right_text($text) {
$text = ”;
return $text;
}

2条评论

发表评论