Custom post type – bbird.me http://bbird.me WordPress quick tips Wed, 08 Aug 2018 16:39:07 +0000 en-US hourly 1 https://wordpress.org/?v=4.9.8 Checking condition if on a custom post type singular or custom post type archive http://bbird.me/checking-condition-if-on-a-custom-post-type-singular-or-custom-post-type-archive/ http://bbird.me/checking-condition-if-on-a-custom-post-type-singular-or-custom-post-type-archive/#respond Thu, 08 Sep 2016 20:39:19 +0000 http://bbird.me/?p=541 If you want to check if you are on custom post type singular or custom post type archive within your

Post Checking condition if on a custom post type singular or custom post type archive je prvi puta viđen na bbird.me.

]]>
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:

<?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.

 

Post Checking condition if on a custom post type singular or custom post type archive je prvi puta viđen na bbird.me.

]]>
http://bbird.me/checking-condition-if-on-a-custom-post-type-singular-or-custom-post-type-archive/feed/ 0