Skip to main content
FolksSpeakersPluginsThemesEventsSnippetsShippedCommunityResources
Login Join
Snippet · PHP

Change Powered by WordPress Link in the Admin Footer

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

5 views
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>';
}