Wordpress Custom Admin Footer


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. For a personal footer in the admin section. Add this to the function.php file of your theme
  2.  
  3. add_filter( 'admin_footer_text', 'my_admin_footer_text' );
  4. function my_admin_footer_text( $default_text ) {
  5. return '<span id="footer-thankyou">Website by <a href="http://www.yoursite.com">yoursite</a><span> | Powered by <a href="http://www.wordpress.org">WordPress</a>';
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.