Skip to content

Instantly share code, notes, and snippets.

@gstricklind
Last active August 29, 2015 14:02
Show Gist options
  • Save gstricklind/c2e065eef0962d14588e to your computer and use it in GitHub Desktop.
Save gstricklind/c2e065eef0962d14588e to your computer and use it in GitHub Desktop.
WordPress: Hide "Home" page title when front-page is set.
<?php if( !is_front_page() ):?>
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment