• Hello, I’m using a static front page for my site titled ‘Home’. However, I do not want the title ‘Home’ to appear at the top of the page. Provisionally I have edited the style.css such that page headings simply do not appear. However, this now applies to all pages which is not what I want. Any suggestions on how to resolve this problem? Many thanks! (ps: Here is my site if you need to see what I’m getting at. Cheers!)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter mandarke

    (@mandarke)

    No takers whatsoever for this particular quandary? Why might it be that I have little luck with responses on this forum, am I formulating my questions badly? Is this too obvious a question? I havn’t found it addressed anywhere else. All support would be greatly received!

    You can wrap your “the_title” tag in a conditional tag. This way you can have WP show the title ONLY if it’s not your home page.

    http://codex.wordpress.org/Conditional_Tags#The_Front_Page

    Inside the loop, find your the_title() tag and change it to this:

    if (!is_front_page()) the_title()

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing the page header for particular pages?’ is closed to new replies.