Here is how to remove or modify the footer text in the WP admin, put this into functions.php
of your theme:
1 2 3 4 | function modify_admin_footer () { echo 'Developped by <a href="http://www.mycompany.com" target="_blank" rel="noopener noreferrer">My company</a>'; } add_filter('admin_footer_text', 'modify_admin_footer'); |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.