Last active
February 1, 2021 19:56
-
-
Save JuReyms/961b665e1780e9430987ceed3a6aab31 to your computer and use it in GitHub Desktop.
WordPress - Change admin footer text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Change left wpfooter text | |
*/ | |
function footer_admin () { | |
echo '<strong>' . $_SERVER['HTTP_HOST'] . '</strong> - 2021'; | |
} | |
add_filter('admin_footer_text', 'footer_admin'); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment