The default WordPress themes use the footer area to display the “Proudly powered by WordPress” link. Here’s how to remove or modify the footer text in the WP admin, put this into functions.php of your theme :
1 2 3 4 5 | function fwm_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', 'fwm_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.