私は以下のコードを使用しましたが、運が悪いです
1
//Hide admin footer from admin
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);
2
function wpbeginner_remove_version() {
return '';
}
add_filter('the_generator', 'wpbeginner_remove_version');
3
function my_footer_shh() {
remove_filter( 'update_footer', 'core_update_footer' );
}
add_action( 'admin_menu', 'my_footer_shh' );
それでも私はそれらのテキストとバージョンを私のフッターに見ます。
それで、これらを削除する正確な方法は何ですか?これらのコードスニペットを私の 子テーマfunction.phpに追加しました
これは私のために働く:
<?php
/** Plugin Name: Admin Footer Text Remover **/
add_filter( 'admin_footer_text', '__return_empty_string', 11 );
add_filter( 'update_footer', '__return_empty_string', 11 );
私はコールバックとして __return_empty_string
関数を使用します。