很多WordPress站点在使用过程中需要隐藏WordPress的字样,尤其是WordPress后台底部的两块,每个后台页面都存在,左侧是版权信息,右侧是WordPress版本号。接下来themebetter给大家提供一种解决方案,可以移除WordPress底部版权信息。
在主题的 functions.php 文件中加入以下代码:
/** * 移除WordPress后台底部左文字 * https://kenpai.com/wordpress-delete-copyright.html */ add_filter('admin_footer_text', '_admin_footer_left_text'); function _admin_footer_left_text($text) { $text = ''; return $text; } /** * 移除WordPress后台底部右文字 * https://kenpai.com/wordpress-delete-copyright.html */ add_filter('update_footer', '_admin_footer_right_text', 11); function _admin_footer_right_text($text) { $text = ''; return $text; }
移除版权固然很清爽,除非必要,否则不建议大家移除,也是对开发者的尊重。