วิธีการลบรุ่น WordPress จากส่วนท้ายของผู้ดูแลระบบ


12

มีวิธีใดที่จะลบหมายเลขรุ่นออกจากด้านขวาของส่วนท้ายผู้ดูแลระบบ 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ไฟล์

คำตอบ:


21

เพิ่มลงในของคุณ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' );

5
ฟังก์ชั่นนี้is_admin()จะตรวจสอบว่าคุณกำลังโหลดหน้าจอผู้ดูแลระบบหรือไม่ คุณควรทดสอบความสามารถของผู้ใช้ปัจจุบันโดยใช้สิ่งที่ต้องการcurrent_user_can( 'manage_options' )แทน ดังนั้นแม่นยำยิ่งขึ้น:if ( !current_user_can('manage_options') ) { remove_filter( 'update_footer', 'core_update_footer' ); }
เจน

4

คำตอบอื่น ๆ ไม่ทำงานสำหรับเว็บไซต์ของฉัน ฉันลองใช้สคริปต์นี้แทนและใช้งานได้ดีในการลบหมายเลขรุ่น WordPress ออกจากส่วนท้ายด้านขวาของหน้าผู้ดูแลระบบ:

add_filter( 'admin_footer_text', '__return_empty_string', 11 ); 
add_filter( 'update_footer', '__return_empty_string', 11 );

ฉันลองใช้สคริปต์นี้แทนและใช้งานได้ดี: add_filter ('admin_footer_text', '__return_empty_string', 11); add_filter ('update_footer', '__return_empty_string', 11);
Youssef Ilouafi

รหัสนี้จะลบทางด้านซ้ายของเครดิต WordPress เช่นกัน
Binar Web

0

เพิ่มรหัสง่าย ๆ นี้เข้าไปในไฟล์ function.php ของคุณ:

function wpbeginner_remove_version() {
return '';
}
add_filter('the_generator', 'wpbeginner_remove_version');

คำถามคือเกี่ยวกับพื้นที่ของผู้ดูแลระบบ
Binar Web
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.