Here’s a detailed guide on how to remove the “Proudly Powered by WordPress” footer text from your website:
Why Remove “Proudly Powered by WordPress”?
While WordPress is a great platform, many website owners prefer a more professional and branded look without third-party credits. Removing this footer text helps in:
✔️ Improving branding
✔️ Making your site look more customized
✔️ Enhancing professionalism
Methods to Remove “Proudly Powered by WordPress”
1. Using WordPress Customizer (No Coding Needed)
✅ Best for beginners
- Login to your WordPress Dashboard
- Navigate to Appearance → Customize
- Click on Footer or Site Identity (depends on theme)
- Look for the Footer Credits or similar option
- Delete or replace the text
- Click Publish
🚀 Done! Some themes allow easy removal, while others require extra steps.
2. Editing the Footer.php File (Manual Method)
✅ Best for more control
- Backup your website before making any changes
- Go to Appearance → Theme Editor
- Find and open footer.php
- Look for this code:
<div class="site-info"> <?php printf( __( 'Proudly powered by %s', 'your-theme' ), 'WordPress' ); ?> </div>
- Delete or modify the line
- Click Update File
🔥 Warning: Any theme update may restore this text. Consider using a child theme to prevent this.
3. Using CSS (Simple & Safe)
✅ Best for quick fixes (without modifying code)
- Go to Appearance → Customize
- Click on Additional CSS
- Add this CSS code:
.site-info { display: none; }
- Click Publish
🛠️ Limitations: This hides the footer text but doesn’t remove it from the source code.
4. Using a Plugin (Easiest Method)
✅ Best for non-tech users
- Install the Remove Footer Credit plugin
- Go to Tools → Remove Footer Credit
- Enter the text you want to remove and replace
- Save changes
🚀 That’s it! No coding required.
Final Thoughts
✅ Best method for beginners: WordPress Customizer or Plugin
✅ Best method for complete removal: Editing footer.php
✅ Best method for quick fixes: CSS
Need more help? Let me know! 😊 🚀