แก้ไข“ ขอบคุณที่สร้างด้วย Wordpress” ในเวอร์ชั่น 3.3.1


10

มีวิธีแก้ไขข้อความ "ขอบคุณที่สร้างด้วย Wordpress" ในเวอร์ชั่น 3.3.1 ที่ด้านล่างของ CMS หรือไม่? ถ้าเป็นเช่นนั้นฉันต้องแก้ไขไฟล์อะไร

คำตอบ:


13

เครดิตจะไปที่ @kaiser อย่างแน่นอน แต่นี่เป็นวิธีแก้ปัญหาการทำงานที่สมบูรณ์ คุณสามารถเพิ่มรหัสนี้ลงในไฟล์ functions.php ของคุณ (ในธีมของคุณ):

function wpse_edit_footer() {
    add_filter( 'admin_footer_text', 'wpse_edit_text', 11 );
}

function wpse_edit_text($content) {
    return "New Footer Text";
}

add_action( 'admin_init', 'wpse_edit_footer' );

5

เพียงขอเกี่ยวกับตัวกรอง <hr />สิ่งเดียวที่เหลือจะเป็น

/**
 * Change/Disable the footer text line
 * @return void
 */
function wpse_remove_footer()
{
    add_filter( 'admin_footer_text',    '__return_false', 11 );
    add_filter( 'update_footer',        '__return_false', 11 );
}
add_action( 'admin_init', 'wpse_remove_footer' );

ในกรณีที่คุณต้องการเปลี่ยน:

add_action( 'admin_init', function()
{
    add_filter( 'admin_footer_text', function() {
        echo "This is a custom admin footer text";
    }, 11 );
    add_filter( 'update_footer', function() {
        echo "This is a custom footer update text";
    }, 11 );
} );

ตกลงขอบคุณฉันไม่ต้องการลบมันแค่แก้ไขสิ่งที่กล่าว
Rob

@Rob เพียงแค่แทนที่__return_falsefn โทรกลับadmin_footer_textด้วยโทรกลับที่กำหนดเองที่ทำreturnกับสตริงที่กำหนดเองของคุณ
ไกเซอร์

1
add_filter('admin_footer_text', remove_admin_footer_text, 1000);

function remove_admin_footer_text($footer_text =''){
return '';  
}

add_filter('update_footer', remove_admin_footer_upgrade, 1000);

function remove_admin_footer_upgrade($footer_text =''){
return '';  
}

1
โปรดโพสต์คำตอบที่ถูกต้องนั่นคือโปรดอธิบายว่าโค้ดของคุณทำงานอย่างไรและทำงานอย่างไร ยื่นแก้ไขและปฏิบัติตาม
Pieter Goosen

0

ไปที่นั่น:

// Admin footer modification

function remove_footer_admin () {
    echo '<span id="footer-thankyou">Developed by <a href="https://www.example.com" target="_blank">www.example.com</a></span>';
}

add_filter('admin_footer_text', 'remove_footer_admin');
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.