Remove "Proudly powered by WordPress" from Twenty Eleven theme.
April 24, 2012 at 2:14 AM
—
Website Sorcery
For those of you using the Twenty Eleven theme for WordPress and wish to remove the "Proudly powered by WordPress" link in the footer, then this is how:
- In the admin panel, select Appearance -> Editor.
- Select footer.php from the Templates column.
- Search for the div with the class id site-generator (<div id="site-generator">) and remove the following code:
<?php do_action( 'twentyeleven_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
- Click the Update File button.
Job done!
If this has helped you, please take the time to like/share this page. Thanks.