Hey folks, is it possible to remove the 'powered by wordpress' & the 'twenty ten' logo/ link from my blog?
Cheers,
Robbie
Hey folks, is it possible to remove the 'powered by wordpress' & the 'twenty ten' logo/ link from my blog?
Cheers,
Robbie
sure
open footer.php and remove this bit
<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 -->
back up 1st
note - this will get ovewrwritten in the next wordpress or theme update
it is recommended to make a child theme with changes
http://codex.wordpress.org/Child_Themes
edit - haha, you beat my edit
But be warned that your changes will be over-written the next time you upgrade WordPress or the theme. For this reason, it is recommended that you consider creating a child theme for your customisations.
This topic has been closed to new replies.