Moshe
Moshe

Reputation: 9859

How can I remove the page titles in the Twenty Thirteen Theme?

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

Answers (2)

Samyappa
Samyappa

Reputation: 531

you can add css in your theme style sheet

.page .entry-title {
       display:none;
}

Upvotes: 1

Moshe
Moshe

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

Related Questions