If you want to check if you are on custom post type singular or custom post type archive within your WordPress website, you can perform the following check:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<?php if ( is_singular( 'locations' ) || is_post_type_archive('locations') ) { // we are on locations CPT } else { // we are everywhere else } ?> |
In this particular case, we are checking if we are on locations custom post type or on the archive of that CPT.