How to remove powered by wordpress from Footer – Hide wordpress credit
Posted in How to, Wordpress By SureyeaWhether its wordpress.com users or self-hosted wordpress.org websites, most of the newbies have this question? How to hide the wordpress credit links from footer. People (especially the new ones) think that by removing the credit links in footer, they can hide that their site is running on wordpress platform. False statement, today even a non tech savvy can easily find out that your site runs on wordpress. But anyhow if you wish not to show those links, then it’s simple to remove it.
Removing blog at wordpress.com
If you are running your site at wordpress.com (free platform) then in your footer you will see “blog at wordpress.com” instead of “powered by wordpress”. Your custom theme design grants you the ability to remove that credit links by using CSS. After all going through the wordpress forum we came to know that it violates wordpress TOS. You are not permitted to remove wordpress.com credit link and if you do so then your site will be suspended. Even wordpress.com VIP users should need to hold the footer credit link.
Check out CNN website’s footer.
Anyhow self-hosted wordpress.org website is fully under your control and you can make whatever you want.
How to remove powered by wordpress
Recently a user asked us about how to remove powered by wordpress link and even some asked about changing the credit link and name. If you are a web design company then you wish to remove or change the powered by wordpress from your clients websites. WordPress.org is licensed under GPL, so you don’t have to worry about customizing the credit links in your footer.
Some premium themes have the option where you can edit your footer straight from the theme panel. But how about free themes (twenty eleven, twenty twelve, and twenty thirteen); all you need to do is edit your footer.php file. Go to Appearance >> Editor in your wordpress dashboard and open footer.php file. Now you will see a line like this, just remove it or modify it accordingly. It’s clear in the code, where you can change the wordpress link and powered by wordpress text.
<div class="site-info"> <?php do_action( 'twentytwelve_credits' ); ?> <a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentytwelve' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentytwelve' ); ?>"><?php printf( __( 'Proudly powered by %s', 'twentytwelve' ), 'WordPress' ); ?></a> </div><!-- .site-info -->
The above method in temporary which removes the powered by wordpress text and link, but when you update the theme it appears again. So by using CSS you can hide it forever.
Just copy the following CSS and paste it in your theme’s custom CSS file.
.site-info { display: none; }
It varies from theme to theme, the above CSS trick works on twenty twelve theme. Whereas the twenty eleven div id is site-generator <div id=”site-generator”> and in such case you have to add the CSS like this.
#site-generator { display: none; }
Having credit links in footer is a nice idea because you can show some gratitude to wordpress and to your theme author.
Hope this post helped you on how to remove powered by wordpress text and links in footer.
Related Posts
- How to recover wordpress password on localhost Most won’t do coding; testing and designing in website that is live for that reason you will work in your local computer (localhost) and implement it online once it is...
- How to embed media files in wordpress (Audio & Video) For beginners we have been posting a lots of “how to” guides for wordpress and recently we made a post on how to embed Google maps in wordpress site hope...
- How to change wordpress username – Change username admin for security Do you need to change you wordpress username that is the default username admin, then take a look at this post. In wordpress user settings you can only change your...
- How to create a separate page for blog posts in wordpress – Blog page Have you ever thought of showing your blog posts in a separate page instead of showing it in your main page? You well know that wordpress is a best CMS...
- Adding .html or .php to the end of wordpress URL (posts and pages) Have you ever wondered how some wordpress sites have .html or .Php at the end of their URL? Blogging platforms like Blogger and Weebly will have .html at the end...