← Back to All Snippets

Customize Admin Footer Branding and Support Links

⚡ Target: functions.php 🔒 Tested: WP 6.6+ / PHP 8.2+ 💻 Lang: PHP
PHP (functions.php)
add_filter( 'admin_footer_text', function() {
    return '<span>Maintained with excellence by <a href="' . esc_url( home_url() ) . '" target="_blank">' . esc_html( get_bloginfo( 'name' ) ) . '</a>. For support, contact <a href="mailto:[email protected]">[email protected]</a>.</span>';
} );

Replace the default ‘Thank you for creating with WordPress’ footer text with custom agency branding, contact links, or copyright notices.

← Back to All Snippets Explore Dev Tools →