我在函数中插入以下简单代码。php编辑页脚仪表板中的消息“感谢您使用WordPress创建”但一切都没有改变。我有版本4.9.8,你认为这个代码在版本4中不起作用吗?
// 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\');