Viewing 1 replies (of 1 total)
  • 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 } ?>
Viewing 1 replies (of 1 total)
  • The topic ‘page titles vs. post titles’ is closed to new replies.