Is there some way to turn off titles on pages but leave them on for blog posts?
Is there some way to turn off titles on pages but leave them on for blog posts?
If I understand correctly, in your page.php you should have a line like:
<h2><?php the_title(); ?></h2>
erase it.
If your theme doesn't have a page.php and uses one of those combined single/page files you could try:
<?php if (!is_page()) { ?>
<h2><?php the_title(); ?></h2>
<?php } ?>This topic has been closed to new replies.