/ Published in: PHP
URL: http://www.wprecipes.com/wordpress-tip-how-to-change-the-dashboard-footer-text
Place snippet in functions.php
Expand |
Embed | Plain Text
function remove_footer_admin () { echo "Your own text"; } add_filter('admin_footer_text', 'remove_footer_admin');
You need to login to post a comment.
