Skip to content

How To Change Footer Text In WordPress Admin Panel

WordPress has its on branding on various places in their software. You’ll find their links to login page, admin bar, footer and more. If you’re creating a website for your client with WordPress, then you should change footer text in WordPress admin panel to your own custom branding, which will remind your client about you and he will contact you for the job.

By default, WordPress has following text on its admin panel’s footer:

Thank you for creating with WordPress.

It’s extremely easy to change this text to your own custom branding. Just add following snippet to your theme’s functions.php file:

function change_footer_admin () {
  echo 'Powered By WordPress';
}

add_filter('admin_footer_text', 'change_footer_admin');

2 thoughts on “How To Change Footer Text In WordPress Admin Panel”

Leave a Reply

Your email address will not be published. Required fields are marked *