Definition:
function is_tag( $slug = '' ) {}
Is the query for a tag archive page?
If the $tag parameter is specified, this function will additionally check if the query is for one of the tags specified.
Parameters
- mixed $slug: Optional. Tag slug or array of slugs.
Source code
function is_tag( $slug = '' ) { if ( !$this->is_tag ) return false; if ( empty( $slug ) ) return true; $tag_obj = $this->get_queried_object(); $slug = (array) $slug; if ( in_array( $tag_obj->slug, $slug ) ) return true; return false; }
2199
No comments yet... Be the first to leave a reply!