Skip to main content

WordPress Tutorial: Custom Admin Footer

Customising the footer of the WordPress admin can be useful when you want to maintain your brand presence on a client's website.

The following code snippet will replace the default WordPress admin footer with your own HTML content.

add_filter( 'admin_footer_text', 'custom_admin_footer_text' );
function custom_admin_footer_text( $default_text )
{
    return '<span id="footer-thankyou">Website developed by <a href="https://www.jnorton.co.uk">Justin Norton</a><span> | Powered by <a href="https://www.wordpress.org">WordPress</a>';
}

Looking for Expert WordPress or Drupal development?

I am a freelance website developer and designer based in the UK. I work as a remote Drupal developer, WordPress developer and Front-end developer for a variety of startups, charities and international businesses in Bristol, Bath, London and Europe. You can learn more about me by visiting my resume page.

Get in touch for a free quote on your next project and if you want to connect me with then check out my LinkedIn profile.