Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Shan

    (@shan-last-shreds-of-sanity)

    Can anyone help me?

    This is using the page template, so open up page.php in your theme directory and look for this:
    <h1 class="page-title"><?php the_title(); ?></h1>

    If you want to remove the title from all pages, just delete this and save the file. If you only want to hide the title on the home page, replace that line with this:

    <?php if(!is_home()): ?>
    <h1 class="page-title"><?php the_title(); ?></h1>
    <?php endif; ?>

    You can do something similar around the breadcrumbs.

    Thread Starter Shan

    (@shan-last-shreds-of-sanity)

    THANK YOU!! I will give it a try.

    Are there any tutorials that you know of to make the “blog” archive page look more like the real blog page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Making a Static Home Page That does not say “home” on it’ is closed to new replies.