酱茄教你怎么删除WordPress后台底部版权和版本号信息
2020-09-01 本文已影响0人
酱茄
当前使用的模板,找到函数文件:functions.php,然后插入以下代码:
//酱茄jiangqie.com教你删除WordPress后台底部版权信息
add_filter('admin_footer_text', '_admin_footer_left_text');
function _admin_footer_left_text(text = '';
return $text;
}
//酱茄jiangqie.com教你删除WordPress后台版本号信息
add_filter('update_footer', '_admin_footer_right_text', 11);
function _admin_footer_right_text(text = '';
return $text;
}