Replace WordPress Admin Footer

,

In some cases you may want a slightly more personalized Admin footer in your WordPress backend. Here is a snippet you can use to change the default text within the WordPress admin footer.

 

Custom WordPress Admin Footer

Simply add this code to the “functions.php” file within your child theme.

 

REVEAL CODE

/*
** Replace WordPress Admin Footer
*/
add_filter( 'admin_footer_text', 'dashboard_footer' );
if( !function_exists( 'dashboard_footer' ) )
{

    function dashboard_footer()
    {

        echo '&copy; '.date('Y').' <a href="https://endurtech.com" title="Website Technology Solutions Provider" target="_blank"><strong>ENDURTECH</strong></a> &reg; | Need help? Contact <a href="https://endurtech.com/contact/" title="Contact Support" target="_blank"><strong>Support</strong></a>';
    }
}

 

We hope this article has helped you create a custom admin footer within your WordPress backend. If this article was helpful please take a moment to like us on Facebook, share this on your social media or buy us a cup of coffee.