Modify footer text in WordPress Admin area
Tento článek (nebo jeho část) je převzat z externího zdroje. Je tedy slušností jej uvést včetně případného autora.
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.
1 2 3 4 |
function modify_footer_admin () { echo 'Site developed by <a href="https://s12621.p20.sites.pressdns.com">Web Design Weekly</a>. Powered by <a href="http://www.wordpress.org">WordPress</a>'; } add_filter('admin_footer_text', 'modify_footer_admin'); |
You can dig into the source code a little more here.
Napsat komentář