Skip to content

Instantly share code, notes, and snippets.

@jcamp
Forked from barbwiredmedia/template.php
Created July 6, 2018 17:58
Show Gist options
  • Save jcamp/8c8548351a93bfe3b650e70cafde641a to your computer and use it in GitHub Desktop.
Save jcamp/8c8548351a93bfe3b650e70cafde641a 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