WordPress 後臺底部默認會顯示WordPress版本信息和版本號,如果你運維一個多用戶網站,並且其他用戶可以訪問後臺,那麼你可以自定義這些信息,隱藏版本號等。隻要將下面的代碼添加到主題的 functions.php 即可:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** * 自定義 WordPress 後臺底部的版權和版本信息 * https://www.wpdaxue.com/change-admin-footer-text.html */ add_filter('admin_footer_text', 'left_admin_footer_text'); function left_admin_footer_text($text) { // 左邊信息 $text = '<span id="footer-thankyou">感謝使用<a href="http://cn.wordpress.org/">WordPress</a>進行創作</span>'; return $text; } add_filter('update_footer', 'right_admin_footer_text', 11); function right_admin_footer_text($text) { // 右邊信息 $text = "3.6.1版本"; return $text; } |
/**
* 自定義 WordPress 後臺底部的版權和版本信息
* https://www.wpdaxue.com/change-admin-footer-text.html
*/
add_filter(‘admin_footer_text’, ‘left_admin_footer_text’);
function left_admin_footer_text($text) {
// 左邊信息
$text = ‘<span id="footer-thankyou">感謝使用<a href="http://cn.wordpress.org/">WordPress</a>進行創作</span>’;
return $text;
}
add_filter(‘update_footer’, ‘right_admin_footer_text’, 11);
function right_admin_footer_text($text) {
// 右邊信息
$text = "3.6.1版本";
return $text;
}
請根據自己的實際需要,修改代碼中的文本內容。