Do you want to get rid of the WordPress powered footer links on your website? A reader recently inquired about the possibility of removing footer credits from WordPress themes. We’ll show you how to get rid of the WordPress powered footer links in your themes in this article.
The “Proudly powered by WordPress” link is displayed in the footer of most WordPress themes by default. Many theme creators go one step further and include their own credits, such as “Powered by WordPress.” “Company Z’s Theme.”
However, if you’re running a business website, displaying these credits isn’t a good idea. Some even believe it gives your website a shabby appearance.
Is it legal to remove WordPress credit links from the footer?
This is a commonly asked question. Removing the footer credits link from your WordPress site is completely legal.
WordPress is available for free and is licensed under the GNU General Public License.
In a nutshell, this license allows you to use, modify, and even redistribute WordPress. Most commercial WordPress themes, as well as any theme or plugin downloaded from the official WordPress.org directory, are released under the same license.
As a result, you have comprehensive control over your website, as well as the power to remove the footer credit links.
Let us look at how to remove these credit links from your WordPress footer.
WordPress Powered by Links are being removed from the website.
There are several methods for removing credit links from the WordPress footer, but we only recommend the three methods below.
Page with Theme Options
The majority of good theme authors understand that their users want the ability to remove credit links from the footer. That’s why it’s in the theme options.
This option is available in various sections across various themes. However, the WordPress theme customizer (Appearance » Customize) is the best place to start looking.
Users can customize the footer text and disable the credit links in the Astra theme, for example.

Individual theme options pages or the Widgets section are also good places to start.
Code Method: footer.php
If your theme does not allow you to edit or remove footer credits from the WordPress admin, you can edit the footer.php code instead.
We recommend creating a backup before making any changes to your website’s code so you can restore it if something goes wrong.
Remember that any changes you make to your theme files will be lost if you update or switch themes. This tutorial will show you how to update your theme without losing your customizations.
The footer.php file is located in the theme folder. For example, /wp-content/themes/yourtheme/footer.php (instead of “yourtheme,” look for your current theme name).
Simply open this file in a text editor and search for “Powered by” in the footer credit text to find the section that needs to be removed.
The code for WordPress’s default Twenty Twenty-One theme looks like this:
<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 have the option of completely removing or customizing this text to meet your needs.
Method of a Page Builder
If you would like to make more changes to the design as well as the layout of your WordPress theme, you need to use a page builder plugin like Beaver Builder or perhaps Divi.
Without knowing any code, drag and drop page builders make it simple to customize your theme.
See our guide to the best drag and drop page builders for WordPress for more information.
At all costs, stay away from the CSS method.
Some WordPress tutorial sites may now show you how to hide the footer credit links with CSS using display: none.
However, doing so will jeopardize your site’s SEO. Google dislikes hiding links with display: none because spammers use this technique to hide links from users while still displaying them to Google (in hopes of higher rankings).
It’s possible that your site will be flagged, and you’ll lose your search engine rankings as a result.
So, whatever you do, don’t use the following CSS method:
1 | #site-info { display : none } |
It may appear simple, but it is detrimental to SEO.
The two methods we demonstrated above are strongly recommended. If you are unable to do either of these, we recommend hiring a professional to assist you in removing your footer credit links, or changing your WordPress theme entirely.
We hope you were able to remove the powered by WordPress footer links with the help of this article.
If you liked this post, please find and follow us on Instagram, Twitter and Facebook.