← Back to All Snippets

Customize WordPress Admin Footer Text and Remove Version Info

⚡ Target: functions.php 🔒 Tested: WP 6.6+ / PHP 8.2+ 💻 Lang: PHP
PHP (functions.php)
add_filter( 'admin_footer_text', function() {
    return '<span>Developed & Managed with <a href="' . home_url() . '" target="_blank">TipWP</a></span>';
} );
add_filter( 'update_footer', '__return_empty_string', 11 );

White-label the WordPress administration area for client sites with custom branding and support links in the dashboard footer.

← Back to All Snippets Explore Dev Tools →