Skip to content

Instantly share code, notes, and snippets.

@mauriciogofas
Created February 5, 2015 15:57
Show Gist options
  • Save mauriciogofas/06a61720ab725c7d33e1 to your computer and use it in GitHub Desktop.
Save mauriciogofas/06a61720ab725c7d33e1 to your computer and use it in GitHub Desktop.
Custom WP Admin Footer
<?php
// Admin Footer
add_filter( 'admin_footer_text', 'my_footer_text' );
add_filter( 'update_footer', 'my_footer_version', 11 );
function my_footer_text() {
return '&nbsp;';
}
function my_footer_version() {
return 'Your New Prhase';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment