2 Ways to Remove “Powered by WordPress” Link

2 Ways to Remove “Powered by WordPress” Link

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://wordpress.org/', 'twentyten') ); ?>"
						title="<?php esc_attr_e('Semantic Personal Publishing Platform', 'twentyten'); ?>" rel="generator">
					<?php printf( __('Proudly powered by %s.', 'twentyten'), 'WordPress' ); ?>
				</a>
			</div><!-- #site-generator -->

9 Comments

  1. nice one it helped me a lot

  2. nice it helped me alot

  3. I found your blog through google search. Great SEO work. Whilst i am learning seo myself I have found the information on your blog post helpful that has increased my passino to learn more. Once again, a great post :) thanks.

  4. Our pleasure Kandace! Glad we could help.

  5. hello,i like this page and learn this page. Thanks.

Leave a Comment