Skip to main content
Login Join
Snippet · PHP

Change WordPress Admin Footer Text

Shared by Amit Dholiya · September 21, 2026 · @admin_footer_text

3 views
1 upvote
Back to Snippets

Customize the default footer text shown at the bottom of the WordPress admin dashboard. This is useful for adding your company name, support information, or a custom message.

Steps

  1. Add the code below to your theme’s functions.php.
  2. Replace the text with your own message.
  3. Save the file.
  4. Open any WordPress admin page and scroll to the bottom.
/**
 * Change WordPress admin footer text
 */
function custom_admin_footer_text( $text ) {
    return 'Built and maintained by Zeal Digital.';
}

add_filter(
    'admin_footer_text',
    'custom_admin_footer_text'
);

Tested on

WordPress 7.1

Reported by the author on September 21, 2026. WPFolks has not verified this.

Know a different way to do this? Add your approach as a variation so folks can compare them side by side.
Submit a variation

0 comments