Quick Hack to Replace WordPress Dashboard Footer Text
News & Community
If you’re white labeling WordPress as your own CMS or simply want to add your own text and links to the WordPress dashboard footer area, here is a simple customization that you can do in under a minute.
Simply paste this into your functions.php file:
function remove_footer_admin () { echo "Your own text"; } add_filter('admin_footer_text', 'remove_footer_admin');
Add in text, links, or brand it with your own logo at the bottom.
Source: WPRecipes.com
Create your free account to post your comment
Login to post your comment