Skip over page title on homepage – PHP question
-
Hello,
I need to remove the page title from my homepage. The code I used is suppose to jump over the IF statement that renders the title. It is not working.Here is what I did:
<div class="entry-header"> <?php if (! is_home()) { if (! is_single()) : the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '">', '</a></h2>' ); else: the_title( '<h2 class="entry-title">', '</h2>' ); endif; } ?> </div>
(This is a change to the Writtee theme but since it is a coding question I put it here. Hope it’s OK, I’m new here and don’t know my way around yet.)
The page I need help with: [log in to see the link]
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Skip over page title on homepage – PHP question’ is closed to new replies.