Chỉnh sửa cảm ơn bạn đã tạo bằng Wordpress phiên bản 3.3.1


10

Có cách nào để chỉnh sửa văn bản "cảm ơn bạn đã tạo bằng Wordpress" trong phiên bản 3.3.1 ở cuối CMS không? Nếu vậy tập tin nào tôi cần chỉnh sửa?

Câu trả lời:


13

Tín dụng chắc chắn thuộc về @kaiser, nhưng đây là một giải pháp hoạt động đầy đủ. Bạn có thể thêm mã này vào tệp tin.php. (Trong chủ đề của bạn):

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

Chỉ cần móc vào bộ lọc. Điều duy nhất còn lại sẽ là <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' );

Trong trường hợp bạn muốn thay đổi nó:

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 );
} );

Ok cảm ơn, tôi không muốn loại bỏ nó, chỉ cần chỉnh sửa những gì nó nói.
Cướp

@Rob Chỉ cần thay thế cuộc __return_falsegọi lại fn admin_footer_textbằng một cuộc gọi lại tùy chỉnh thực hiện returnbằng chuỗi tùy chỉnh của bạn.
kaiser

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
Vui lòng gửi câu trả lời thích hợp, nghĩa là, vui lòng giải thích mã của bạn làm gì và cách thức hoạt động. Gửi một chỉnh sửa và tuân thủ
Pieter Goosen

0

Bạn đi đây

// 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');
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.