Wordpress Admin Footer


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

Use this to remove or change the wp-admin footer text. Default is
Thank you for creating with WordPress.


Copy this code and paste it in your HTML
  1. add_filter('admin_footer_text', 'remove_footer_admin'); //change admin footer text
  2. function remove_footer_admin () {
  3. echo "Custom Text or leave empty";
  4. }

URL: http://wordpress.org/support/topic/how-to-delete-change-admin-footer-text

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.