-
-
Save jcamp/8c8548351a93bfe3b650e70cafde641a to your computer and use it in GitHub Desktop.
Wordpress: H1 headlines on different pages.Single / singular / archive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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