is_tag

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!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: