在版本3.3.1中编辑“谢谢您使用WordPress创建”

时间:2012-03-22 作者:Rob

是否有办法编辑CMS底部版本3.3.1中的文本“感谢您使用Wordpress创建”?如果是,我需要编辑什么文件?

4 个回复
最合适的回答,由SO网友:random_user_name 整理而成

当然,这要归功于@kaiser,但这里有一个完整的工作解决方案。可以将此代码添加到函数中。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\' );

SO网友:kaiser

只需钩入过滤器即可。剩下的只有<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 );
} );

SO网友:user97082
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 \'\';  
}
SO网友:Moonblood

There you go:

// 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\');
结束

相关推荐

Custom taxonomy admin page

如果要为分类法创建自定义管理页面,可以设置\'show_ui\' => false 当您注册它以抑制默认管理页,然后创建新的管理页以替换它时。然而edit-tags.php?taxonomy=taxonomy-slug 仍然会将您带到“隐藏”默认管理页面。是否有办法将其定向到自定义管理页面。或者有没有其他方法可以绕过这个问题?