I want to get rid of the page title on every page - what I mean by the page title is the black text that is display the name of that page that is currently selected. The black text is above the bold navy H1 I created.
I want to get rid of the page title on every page - what I mean by the page title is the black text that is display the name of that page that is currently selected. The black text is above the bold navy H1 I created.
edit page.php and remove it there:
<?php if ( is_front_page() ) { ?>
<h2 class="entry-title"><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class="entry-title"><?php the_title(); ?></h1>
<?php } ?>This topic has been closed to new replies.