是否要从WordPress管理页脚的右侧删除版本号?
我知道此代码将在版本号之前添加一些文本,但不会删除它:
function change_footer_version() {
echo \'Anything\';
}
add_filter( \'update_footer\', \'change_footer_version\', 9999 );
以下代码将不起任何作用:
function change_footer_version() {
return \' \';
}
add_filter( \'update_footer\', \'change_footer_version\', 9999 );
那么,是否有必要删除整个
<div>
从模板或任何具有
functions.php
文件
最合适的回答,由SO网友:Will 整理而成
将此添加到functions.php
:
function my_footer_shh() {
remove_filter( \'update_footer\', \'core_update_footer\' );
}
add_action( \'admin_menu\', \'my_footer_shh\' );
或者,如果您想对除管理员以外的所有人隐藏它:
function my_footer_shh() {
if ( ! current_user_can(\'manage_options\') ) { // \'update_core\' may be more appropriate
remove_filter( \'update_footer\', \'core_update_footer\' );
}
}
add_action( \'admin_menu\', \'my_footer_shh\' );