Skip to content

Instantly share code, notes, and snippets.

@barbwiredmedia
Created August 18, 2014 22:10
Show Gist options
  • Save barbwiredmedia/2b09487ddcd261830df1 to your computer and use it in GitHub Desktop.
Save barbwiredmedia/2b09487ddcd261830df1 to your computer and use it in GitHub Desktop.
Wordpress: H1 headlines on different pages.Single / singular / archive
<h1>
<?php if (is_singular('your_cpt') || is_archive('your_cpt') || is_post_type_archive('your_cpt') ) { ?>
YOUR CPT NAME
<?php } elseif (is_search()) { ?>
Search
<?php } elseif (is_404()) { ?>
Error 404
<?php } else { ?>
<?php the_field('headline_text'); ?>
<?php } ?>
</h1>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment