Definition:
function is_singular( $post_types = '' ) {}
Is the query for a single post of any post type (post, attachment, page, … )?
If the $post_types parameter is specified, this function will additionally check if the query is for one of the Posts Types specified.
Parameters
- mixed $post_types: Optional. Post Type or array of Post Types
Source code
function is_singular( $post_types = '' ) { if ( empty( $post_types ) || !$this->is_singular ) return (bool) $this->is_singular; $post_obj = $this->get_queried_object(); return in_array( $post_obj->post_type, (array) $post_types ); }
2185
No comments yet... Be the first to leave a reply!