WordPress: Customize the admin footer Written by on 13/05/2014 Category: Wordpress, Backoffice Tags: admin, footer, wordpress To be placed in the functions.php file: function modify_footer_admin () { echo 'Created by <a href="http://www.partitech.com">Partitech</a>.'; } if (is_admin()) { add_filter('admin_footer_text', 'modify_footer_admin'); }