Skip to content

Instantly share code, notes, and snippets.

@JuReyms
Last active February 1, 2021 19:56
Show Gist options
  • Save JuReyms/961b665e1780e9430987ceed3a6aab31 to your computer and use it in GitHub Desktop.
Save JuReyms/961b665e1780e9430987ceed3a6aab31 to your computer and use it in GitHub Desktop.
WordPress - Change admin footer text
<?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