버전 3.3.1에서“Wordpress를 사용해 주셔서 감사합니다”편집


10

CMS 맨 아래 버전 3.3.1에서 "Wordpress를 사용해 주셔서 감사합니다"라는 텍스트를 편집하는 방법이 있습니까? 그렇다면 어떤 파일을 편집해야합니까?

답변:


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_false콜백 fn을 사용자 정의 문자열로 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
적절한 답변을 게시하십시오. 즉, 코드의 기능과 작동 방식을 설명하십시오. 파일 편집 및 준수
피터 구센에게

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.