Do you want to remove the powered by WordPress footer links on your site? Recently one of our readers asked if it was possible to remove footer credits in WordPress themes. In this article, we will show you how to remove the powered by WordPress footer links in your themes.
The default WordPress themes use the footer area to display the βProudly powered by WordPressβ link. Many theme developers take this further and add their own credits, so it looks something like βPowered by WordPress. Theme by Company Zβ.
But if youβre running a business website, then it doesnβt make any sense to display these credits. Some even think that it makes your website look unprofessional.
Is it legal to remove WordPress footer credit links?
We get this question a lot. Yes, it is absolutely legal to remove footer credits link on your WordPress site.
WordPress is free, and it is released under the GPL license.
In short, that license gives you the freedom to use, modify, and even redistribute WordPress. Any WordPress theme or plugin that you download from the official WordPress.org directory, and even most commercial WordPress themes are also released under the same license.
So you have full rights to do what you please with your website including removing the footer credit links.
Letβs take a look at how to customize your WordPress footer and remove these credit links.
If you donβt like the video or need more instructions, then continue reading.
Removing WordPress Powered by Links
There are many ways to remove the WordPress footer credit links, but we only recommend the following 3 ways of doing this.
The Theme Settings Page
Most good theme authors know that their users want to have the option to remove footer credit links. Thatβs why they make it available in their theme settings area.
Different themes have this setting available under different sections. But the first place to start looking is inside the WordPress theme customizer (Appearance Β» Customize).
For example, the Astra theme give users the option to customize the footer text as well as disable the credit links.
Other places that you can look are individual themeβs options pages or inside the Widgets section.
Footer.php Code Method
If your theme does not have the option to remove or modify footer credits from WordPress admin, then another option is to edit the footer.php code.
Whenever making changes to your websiteβs code, we recommend making a backup first so you can restore your site in case anything goes wrong.
Also, keep in mind that when you make changes to your theme files, those changes will be lost if you update or switch your theme. Hereβs how to update your theme without losing customizations.
You can find the footer.php file in your theme folder. For example, /wp-content/themes/yourtheme/footer.php (just look for your current theme name instead of βyourthemeβ).
Simply open this file in a text editor and search for the footer credit text like βPowered byβ, and it will show you the section that you need to remove.
In the default Twenty Twenty-One theme for WordPress, the code looks like this:
1 2 3 4 5 6 7 8 9 | <div class = "powered-by" > <?php printf( /* translators: %s: WordPress. */ esc_html__( 'Proudly powered by %s.' , 'twentytwentyone' ), '<a href="' . esc_attr__( 'https://wordpress.org/' , 'twentytwentyone' ) . '">WordPress</a>' ); ?> </div><!-- .powered-by --> |
You can either remove this text entirely or customize it to suit your needs.
Page Builder Method
If you want to make more changes to your WordPress themeβs design and layout, itβs better to use a page builder plugin like Beaver Builder or Divi.
Drag and drop page builders make it easy to customize your theme without knowing any code.
For more details, see our guide on the best drag and drop page builders for WordPress.
Avoid the CSS Method at All Cost
Now some WordPress tutorial sites may show you a CSS method that uses display: none to hide the footer credit links.
However doing so will put your siteβs SEO at risk. Google does not like hiding links with display:none because thatβs a technique that spammers use to hide the links from users while still showing it to Google (in hopes of higher rankings).
Your site might get flagged, and it will cause you to lose your search engine rankings.
So whatever you do, do not use the CSS method like this:
1 | #site-info { display : none } |
While it looks simple, itβs not good for SEO.
We strongly recommend using the two methods that we showed above. If you cannot do either of those, then we recommend hiring a professional to help you remove your footer credit links or even consider changing your WordPress theme.
We hope this article helped you remove the powered by WordPress footer links. You may also want to check out our guide on how to improve your WordPress security.
If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.