답변:
크레딧은 분명히 @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' );
필터에 연결하기 만하면됩니다. 남은 유일한 것은 <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 );
} );
__return_false
콜백 fn을 사용자 정의 문자열로 admin_footer_text
수행하는 사용자 정의 콜백으로 바꾸십시오 return
.
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 '';
}