Reputation: 9859
All pages in the Twenty Thirteen
theme display the page's title at the top of the page's content. How can I remove it from all pages?
Upvotes: 0
Views: 1063
Reputation: 531
you can add css in your theme style sheet
.page .entry-title {
display:none;
}
Upvotes: 1
Reputation: 9859
Open wp-content/themes/twentythirteen/page.php
in a text editor and replace the following line:
<h1 class="entry-title"><?php the_title(); ?></h1>
with:
<!--<h1 class="entry-title"><?php the_title(); ?></h1>-->
Upvotes: 0