One of the most frequently asked questions for new WordPress users is how to remove the “Powered by WordPress” link. Of course, it’s a nice thing to do to leave it in there, but WordPress is licensed under the GPL, so there’s no need to worry if you want to remove it. Perhaps you don’t want to advertise to the world that your site runs on WordPress. Here are two easy ways to remove that from your site’s footer:
Option 1: Remove it Using CSS
Method one is perhaps the simplest way. Go to your dashboard and find Appearance >> Editor and then select your style.css file. Paste this in there and you’re good to go:
#site-generator {
display: none;
}
Option 2: Remove it from footer.php
In your WordPress dashboard go to Appearance >> Editor and remove the section that looks like this:
<div id="site-generator">
<?php do_action( 'twentyten_credits' ); ?>
<a href="<?php echo esc_url( __('http:, 'twentyten') ); ?>"
title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator">
<?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?>
</a>
</div>
If you've ever wondered how you could offer a paid site management and hosting service, then this is the plugin for you. Offer a freemium or paid service, for any niche you like, it's powered Edublogs.org to success already!
Find out more
It's now incredibly easy to start your own Q&A site using nothing more than WordPress - The Q&A plugin simply and brilliantly transforms any site, or page, into a perfect support or Q&A environment.
Find out more
Fully integrated with the SEOMoz API, complete with automatic links, sitemaps and SEO optimization of your WordPress setup - this is the only plugin you need to help you rank your site number 1 on Google - nothing else compares.
Find out more
Now there's no need to pay for a third party service to sign up, manage and send beautiful email newsletters to your subscriber base - this plugin has got the lot.
Find out more
Out of all the WordPress ecommerce plugins available, this has got to be the winner - easy to configure, powerful functionality, multiple gateways and more. A simply brilliant plugin!
Find out more
No javascript required, no third part chat engine, just fully featured chat right in your own database on your own WP sites - couldn't be easier.
Find out more
Simply insert google maps into posts, sidebars and pages - show directions, streetview, provide image overlays and do it all from a simple button and comprehensive widget.
Find out more
Would you like to add Facebook comments, registration, 'Like' buttons and autoposting to your WP site? Well, The Ultimate Facebook plugin has got that all covered!
Find out more
If you're thinking about starting a paid, or just private, membership site then this is truly the plugin you've been looking for. Easy to use, massively configurable and ready to go out of the box!
Find out more
You should probably point out that this is only really relevant to the 2010 theme. Most themes these days tend not to include this code :)
Thanks for the script and the information. Have already included it. Keep them coming, I’ll check back.
I was thinking to include some other line my themes footer and I did not know it can be done editing footer.php. It can be done so easily..Thank you for the tips.
I’ve always been really hesitant of using display:none to hide a link. Start doing that too often and Googlebot may think you’re trying to hide links for SEO purposes.
thank you so much for this information :P i spent forever looking around till i found this article… not everyone wants to advertise they are using wordpress, especially since alot of spammers specifically target wordpress sites to get linkbacks…
Thanks again :P
Linda
Thanks for this very helpful information. :-)
Linda, spammers use so many ways to target blogs, so I don’t think this is a big issue.
It can be done so easily..Thank you for the tips
yes,it it good.
I was thinking to include some other line my themes footer and I did not know it can be done editing footer.php. It can be done so easily..Thank you for the tips.
Thanks for sharing Sarah
[...]
Daily Tip: 2 Easy Ways to Remove the “Powered by WordPress” Link – WordPress, Multisite and BuddyPress plugins, themes, news and help – WPMU.org
[...]
[...]
Daily Tip: 2 Easy Ways to Remove the “Powered by WordPress” Link – WordPress, Multisite and BuddyPress plugins, themes, news and help – WPMU.org
[...]
Thanks for sharing, Sarah
Thanks for the helpful tips.
Thank you for this helpful information – it worked as it should..
Hafsteinn from Iceland
I appreciate you taking the time to create this post. It continues to be really useful to me indeed. Enjoy it.
thanks…..
Aadding the css to a child theme protects the revision from wordpress upgrades so you don’t have to repeat it:
#site-generator {
display: none;
}
I didn’t think of that, so simple. Just used the same technique to get rid of the side column on one of the pages.