How to change the dashboard footer text | Wordpress


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

Place snippet in functions.php


Copy this code and paste it in your HTML
  1. function remove_footer_admin () {
  2. echo "Your own text";
  3. }
  4.  
  5. add_filter('admin_footer_text', 'remove_footer_admin');

URL: http://www.wprecipes.com/wordpress-tip-how-to-change-the-dashboard-footer-text

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.