WordPress后台移除页脚信息

WPOCN WordPress教程评论39阅读模式

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

文章末尾固定信息
weinxin
我的微信
微信扫一扫
WPOCN
  • 本文由 发表于 2020年5月28日 10:44:46
  • 转载请务必保留本文链接:https://www.tghello.com/501.html
评论  0  访客  0

发表评论