You want to remove Powered by WordPress in the footer of the website when designing a website with wordpress? Recently, there are quite a few people wondering and needing instructions on how to remove wordpress links in the footer, for wordpress developers who use free themes from wordpress’s library, they are always annoyed at this problem, this article will help you quickly. quickly solve the above problem.
Powered by WordPress is understood to be provided by wordpress as information that this website is designed with wordpress source code, but for many website owners often do not like this, do not want to publicize their website source code or theme. that your website uses.
Table of Contents
So how to remove Powered by WordPress in the footer of the website?
Here I am talking about wordpress.org, not wordpress.com guys, with wordpress.org both source code and web code can be manipulated, so deleting Powered by WordPress is not too difficult. , you have full permission to remove this footer link.

Here I will share 3 ways to hide or remove Powered by WordPress in the footer of the website using wordpress source code.
3 ways to remove Powered by WordPress from website footer
1. The first way is to find this link in the customize interface and delete it.
You access Appearance (interface) » Customize (customization). Find the copyright area or foototer area and delete it.

Depending on the themes you use, there are many themes you will find here but there are many wordpress themes that do not, with themes in this way, we will do it by the methods below.
2. The next way is to go to the footer.php file and delete that code.
You go to the file under the path: /wp-content/themes/yourtheme/footer.php.
Yourtheme is the name of your theme, the root theme name, not the childtheme. You open the edit file and scroll down to the bottom to find the copyright code similar to the code below, then delete it. Remember to delete the correct code according to the opening and closing div tags of each paragraph.
|
<div class=“site-info”> <?php /** * Fires before the twentysixteen footer text for footer customization. * * @since Twenty Sixteen 1.0 */ do_action( ‘twentysixteen_credits’ ); ?> <span class=“site-title”><a href=““ rel=“home”><?php bloginfo( ‘name’ ); ?></a></span> <a href=““><?php printf( __( ‘Proudly powered by %s’, ‘twentysixteen’ ), ‘WordPress’ ); ?></a> </div><!— .site–info —> |
Or you can also edit this information to your liking without having to delete it is also a good solution.
3. How to Use CSS to Hide Links
This is a common way that many wordpress users still do, with the second way touching the code, so many of you are not familiar with it, it will be difficult to handle, easy to cause interface errors, so this way will help you not to worry about errors. , just knowing a little css or having a little knowledge of css is enough to manipulate it.
However, there are still two sides, that is, using this way you will be able to hide the link easily, but in essence, the link is still on your website, just hidden on the user’s browser. google still notices the link and that’s not good for SEO.
The simple way is to check which class the link code in the footer is in by right-clicking on the Powered by WordPress location and selecting inspect element.
For example, in the above code, the class here is site-info.
To hide you use the below CSS syntax, paste in style.css or custom css file as well.
|
#site-info {display:none} |
Using this method is quite quick and simple but remember it is not good for SEO.
Give advice : In my experience, with 3 ways to delete Powered by WordPress in the footer, the first and second ways are still the most feasible, you’d better find the right location and delete it or edit the information and url. to your url.
With method 1, depending on the theme you will find it in different places, but using method 2 you can apply to almost all themes, you can also rename the theme to hide the wordpress interface. in the sourcode if you don’t want others to know the name of your theme.
Good luck!