colonydesign
Member
Posted 9 months ago #
Dear All / WordPress
I am looking to remove RECENT POSTS (in Caps Bold Grey) text on bottom of home page and which appears on every other page from Twenty Eleven new wordpress theme.
Can you tell me how I would do this?
The link to current site under development is http://www.annafairchildstudioa.co.uk/studioA
Many Thanks in Advance
Kind regards
Chris Legg
start by creating a child theme of Twenty Eleven; http://codex.wordpress.org/Child_Themes
then edit showcase.php in the child theme;
remove this whole section:
<section class="recent-posts">
<h1 class="showcase-heading"><?php _e( 'Recent Posts', 'twentyeleven' ); ?></h1>
...
...
echo '</ol>';
?>
</section><!-- .recent-posts -->