$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>customization - how to edit or remove the dashboard footer message|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

customization - how to edit or remove the dashboard footer message

matteradmin9PV0评论
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.
Post a comment

comment list (0)

  1. No comments so far