The WPFolks app is out on iPhone. Free, no ads. Download on the App Store
Skip to main content
Login Join
Snippet · PHP

Change Powered by WordPress Link in the Admin Footer

Shared by Nazim Husain · May 1, 2026 · @admin_footer_text

3 copies
65 views
1 upvote
Back to Snippets
// Change Powered by WordPress Link in the admin footer 
add_filter('admin_footer_text', 'remove_footer_admin'); 
 function remove_footer_admin () {
    echo '<span id="footer-thankyou">Developed by <a href="https://nazimansari.com" target="_blank">Nazim Husain</a></span>';
}
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