If you happen to develop sites for your clients in WordPress it is worth taking a few extra steps to customise the WordPress admin. Thankfully WordPress comes with lots of built in hooks to make this super easy.
With a fresh install, you will be greeted with the following footer text in the footer admin:
Thank you for creating with WordPress.
To adjust this text, add the following snippet in your functions.php file.
function modify_footer_admin () {
echo 'Site developed by <a href="http://ift.tt/1DD1ilh">Web Design Weekly</a>. Powered by <a href="http://ift.tt/eFdXkB">WordPress</a>';
}
add_filter('admin_footer_text', 'modify_footer_admin');
You can dig into the source code a little more here.
The post Modify footer text in WordPress Admin area appeared first on Web Design Weekly.
by Jake Bresnehan via Web Design Weekly
No comments:
Post a Comment