This question already has an answer here: How to remove version and thank you message from the admin footer (1 answer) Closed 6 years ago.admin管理员组文章数量:1130349
I insert the following simple code in the functions.php to edit the message in the footer dashboard "Thank you for creating with WordPress." but nothing changes. I have Version 4.9.8 Do you think this code is not effected in version 4 ?
// Admin footer modification
function remove_footer_admin () {
echo '<span id="footer-thankyou">Developed by <a href="" target="_blank">www.example</a></span>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
This question already has an answer here:
How to remove version and thank you message from the admin footer
(1 answer)
Closed 6 years ago.
I insert the following simple code in the functions.php to edit the message in the footer dashboard "Thank you for creating with WordPress." but nothing changes. I have Version 4.9.8 Do you think this code is not effected in version 4 ?
// Admin footer modification
function remove_footer_admin () {
echo '<span id="footer-thankyou">Developed by <a href="https://www.example" target="_blank">www.example</a></span>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
Share
Improve this question
edited Oct 21, 2018 at 17:50
Pratik Patel
1,1091 gold badge11 silver badges23 bronze badges
asked Oct 21, 2018 at 17:21
OhlalaOhlala
1
1
|
1 Answer
Reset to default 0You can use White Label CMS plugin. Using this plugin you can change footer message and as well as you can update almost all the default settings.
- Install & activate White Label CMS plugin
- Go to Admin Panel >> Settings >> White Label CMS. See this https://prnt.sc/l8xah5
- Click on Branding.
- Under the Footer Section, add your custom footer message and Save the changes.
I insert the following simple code in the functions.php to edit the message in the footer dashboard "Thank you for creating with WordPress." but nothing changes. I have Version 4.9.8 Do you think this code is not effected in version 4 ?
// Admin footer modification
function remove_footer_admin () {
echo '<span id="footer-thankyou">Developed by <a href="" target="_blank">www.example</a></span>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
This question already has an answer here:
How to remove version and thank you message from the admin footer
(1 answer)
Closed 6 years ago.
I insert the following simple code in the functions.php to edit the message in the footer dashboard "Thank you for creating with WordPress." but nothing changes. I have Version 4.9.8 Do you think this code is not effected in version 4 ?
// Admin footer modification
function remove_footer_admin () {
echo '<span id="footer-thankyou">Developed by <a href="https://www.example" target="_blank">www.example</a></span>';
}
add_filter('admin_footer_text', 'remove_footer_admin');
Share
Improve this question
edited Oct 21, 2018 at 17:50
Pratik Patel
1,1091 gold badge11 silver badges23 bronze badges
asked Oct 21, 2018 at 17:21
OhlalaOhlala
1
1
-
2
Note that if this was a filter, you would be passed the value as an argument and have to return the new value. You can't just
echoout the result in a filter, that's not how filters work. – Tom J Nowell ♦ Commented Oct 21, 2018 at 17:51
1 Answer
Reset to default 0You can use White Label CMS plugin. Using this plugin you can change footer message and as well as you can update almost all the default settings.
- Install & activate White Label CMS plugin
- Go to Admin Panel >> Settings >> White Label CMS. See this https://prnt.sc/l8xah5
- Click on Branding.
- Under the Footer Section, add your custom footer message and Save the changes.
本文标签: customizationhow to edit or remove the dashboard footer message
版权声明:本文标题:customization - how to edit or remove the dashboard footer message 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:https://it.en369.cn/questions/1749242444a2338324.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。


echoout the result in a filter, that's not how filters work. – Tom J Nowell ♦ Commented Oct 21, 2018 at 17:51