June 24, 2018
Change wp-admin footer
Description:
How to put a credential link in the WordPress footer.
Kind:
PHP
PHP:
function remove_footer_admin () {
echo 'Fueled by WordPress | Designed by All About Design | Helpful snippets: Jos Vermeulen
';
}
add_filter('admin_footer_text', 'remove_footer_admin');