customization - how to edit or remove the dashboard footer message

admin2025-06-07  43

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="" 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 echo out the result in a filter, that's not how filters work. – Tom J Nowell Commented Oct 21, 2018 at 17:51
Add a comment  | 

1 Answer 1

Reset to default 0

You 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.

  1. Install & activate White Label CMS plugin
  2. Go to Admin Panel >> Settings >> White Label CMS. See this https://prnt.sc/l8xah5
  3. Click on Branding.
  4. Under the Footer Section, add your custom footer message and Save the changes.
转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749242468a317553.html

最新回复(0)