How to Remove Powered by WordPress in WordPress Themes
How to Remove Powered by WordPress in WordPress Themes - When you use WordPress and install WordPress themes you will see the words "Powered by WordPress" at the bottom of the theme or footer section of the WordPress theme. Almost all WordPress themes contained the text.
WordPress default theme uses the footer area to display the "Powered by WordPress" link. Many theme developers also use this area to add their own credits, so it looks like "Powered by WordPress" or eg the best theme developer like mythemeshop using the words "Powered by MyThemeShop" section of the theme footer he created.
Perhaps you as a WordPress site owner feel the writing is disturbing or may make your site look less professional and wishing to remove the "Powered by WordPress" link on that footer on your site, especially if you run a business website, it makes no sense if you display credit. In this article, I will show you some ways to remove the posts and links "Powered by WordPress" on your WordPress theme.
WordPress is a free CMS, and it's released under the GPL license. And that means that it's perfectly legal to remove the credit link linking your site to WordPress in the footer section. Because the license gives anyone the freedom to use, modify, and even distribute WordPress. Any WordPress theme or plugin you downloaded from the official WordPress.org directory, and even the most commercial themes for WordPress are also released under the same license.
So with the license you have full rights to do anything on the theme, plugin and even WordPress itself for your website needs including by removing the link Powered Powered by WordPress contained in the footer.
There are many ways to remove credit links on the WordPress theme footer, below I provide 3 ways, but I only recommend to use the top 2 ways to remove "Powered by WordPress".
1. Theme Setting Pages
Most good theme developers know that their users want to have the option to remove the credit link footer. That's why they make it available in the theme setting areas they distribute.
Each WordPress theme may have different places to make changes or delete this link footer credit. But to see it, the first place you have to go is on the WordPress Customizer theme in the Appearance >> Customize menu.
Or if the WordPress theme you are using has Theme Options, look at the settings section. On Appearance menu >> Theme Options.
2. Edit File Footer.php
This second way is a bit complicated for new WordPress users or WordPress users who do not really understand PHP scripts. But this way you can choose if the WordPress theme you are using does not have the option to delete or change the footer credits from the WordPress admin or WordPress theme settings, then the only option you should do is to edit the footer.php code.
You can find this footer.php file in your /wp-content/themes/tema-anda/footer.php folder
Simply open this file in a text editor and search for a footer foot text like "Powered by", and in that section will show you the sections you need to delete.
In the default Twenty Sixteen theme for WordPress, the code looks like this:
You can delete this text entirely or edit it according to your needs.
3. Add CSS Code
You can remove any posts Powered by WordPress by using CSS code, but this method does not really eliminate the credit link but just hide. You can use a fairly simple code that uses (display:none).
To use the code you need to search for the class or CSS id of the text or link "Powered by WordPress", you can use your browser's inspect element or with the help of Add Ons firebug. If Class or ID has met, please open the WordPress theme.css file you are using, or if you have a child theme, put it in the CSS file. The full code is as follows:
But you need to know that it can be at risk on your site SEO. And Google does not like hidden links with (display: none) because that's the technique that spammers use to hide links from users but still visible to Google (in the hope of higher rankings).
By doing so your site will probably also be marked as a spammer by search engines, and it will cause you to lose rank in the search engines. So whatever you do, do not use the CSS method like this
This way Although it looks simple and easy in its application, it is not good for your WordPress SEO. I would advise you to use the above two ways to remove the credit link in the WordPress footer instead of using the CSS method that is bad for your WordPress site SEO.
And that's some way you can use to remove the footer credit link "Powered by WordPress" on the WordPress theme. Hopefully this article useful and good luck.
WordPress default theme uses the footer area to display the "Powered by WordPress" link. Many theme developers also use this area to add their own credits, so it looks like "Powered by WordPress" or eg the best theme developer like mythemeshop using the words "Powered by MyThemeShop" section of the theme footer he created.
Perhaps you as a WordPress site owner feel the writing is disturbing or may make your site look less professional and wishing to remove the "Powered by WordPress" link on that footer on your site, especially if you run a business website, it makes no sense if you display credit. In this article, I will show you some ways to remove the posts and links "Powered by WordPress" on your WordPress theme.
What To Remove WordPress Credit Links?
WordPress is a free CMS, and it's released under the GPL license. And that means that it's perfectly legal to remove the credit link linking your site to WordPress in the footer section. Because the license gives anyone the freedom to use, modify, and even distribute WordPress. Any WordPress theme or plugin you downloaded from the official WordPress.org directory, and even the most commercial themes for WordPress are also released under the same license.
So with the license you have full rights to do anything on the theme, plugin and even WordPress itself for your website needs including by removing the link Powered Powered by WordPress contained in the footer.
How to Delete Link Powered By WordPress
There are many ways to remove credit links on the WordPress theme footer, below I provide 3 ways, but I only recommend to use the top 2 ways to remove "Powered by WordPress".
1. Theme Setting Pages
Most good theme developers know that their users want to have the option to remove the credit link footer. That's why they make it available in the theme setting areas they distribute.
Each WordPress theme may have different places to make changes or delete this link footer credit. But to see it, the first place you have to go is on the WordPress Customizer theme in the Appearance >> Customize menu.
Or if the WordPress theme you are using has Theme Options, look at the settings section. On Appearance menu >> Theme Options.
2. Edit File Footer.php
This second way is a bit complicated for new WordPress users or WordPress users who do not really understand PHP scripts. But this way you can choose if the WordPress theme you are using does not have the option to delete or change the footer credits from the WordPress admin or WordPress theme settings, then the only option you should do is to edit the footer.php code.
You can find this footer.php file in your /wp-content/themes/tema-anda/footer.php folder
Simply open this file in a text editor and search for a footer foot text like "Powered by", and in that section will show you the sections you need to delete.
In the default Twenty Sixteen theme for WordPress, the code looks like this:
<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="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></span>
<a href="<?php echo esc_url( __( 'https://wordpress.org/', 'twentysixteen' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentysixteen' ), 'WordPress' ); ?></a>
</div>
<!-- .site-info -->
You can delete this text entirely or edit it according to your needs.
3. Add CSS Code
You can remove any posts Powered by WordPress by using CSS code, but this method does not really eliminate the credit link but just hide. You can use a fairly simple code that uses (display:none).
To use the code you need to search for the class or CSS id of the text or link "Powered by WordPress", you can use your browser's inspect element or with the help of Add Ons firebug. If Class or ID has met, please open the WordPress theme.css file you are using, or if you have a child theme, put it in the CSS file. The full code is as follows:
#site-info {display:none}
But you need to know that it can be at risk on your site SEO. And Google does not like hidden links with (display: none) because that's the technique that spammers use to hide links from users but still visible to Google (in the hope of higher rankings).
By doing so your site will probably also be marked as a spammer by search engines, and it will cause you to lose rank in the search engines. So whatever you do, do not use the CSS method like this
This way Although it looks simple and easy in its application, it is not good for your WordPress SEO. I would advise you to use the above two ways to remove the credit link in the WordPress footer instead of using the CSS method that is bad for your WordPress site SEO.
And that's some way you can use to remove the footer credit link "Powered by WordPress" on the WordPress theme. Hopefully this article useful and good luck.
Post a Comment for "How to Remove Powered by WordPress in WordPress Themes"
Provide comments relevant to the posted articles and provide critiques and suggestions for the progress of the blog