is_tag()

is_tag( int|string|int[]|string[] $tag = ” ) 确定查询是否针对现有…

is_tag( int|string|int[]|string[] $tag =  )

确定查询是否针对现有标记存档页。
Determines whether the query is for an existing tag archive page.

目录锚点:#说明#参数#返回#源码#笔记


说明(Description)

如果指定了$tag参数,则此函数还将检查查询是否针对指定的某个标记。

有关此主题函数和类似主题函数的更多信息,请参阅主题开发人员手册中的条件标记文章。


参数(Parameters)

参数 类型 必填 说明
$tag (int | string | int[] | string[]) 可选 要检查的标记ID、名称、slug或此类的数组。

返回(Return)

(bool)


源码(Source)

/**
 * Is the query for an existing tag archive page?
 *
 * If the $tag parameter is specified, this function will additionally
 * check if the query is for one of the tags specified.
 *
 * @since 2.3.0
 *
 * @global WP_Query $wp_query
 *
 * @param mixed $tag Optional. Tag ID, name, slug, or array of Tag IDs, names, and slugs.
 * @return bool
 */
function is_tag( $tag = '' ) {
	global $wp_query;

	if ( ! isset( $wp_query ) ) {
		_doing_it_wrong( __FUNCTION__, __( 'Conditional query tags do not work before the query is run. Before then, they always return false.' ), '3.1' );
		return false;
	}

	return $wp_query->is_tag( $tag );
}
更新版本 源码位置 使用 被使用
2.3.0 wp-includes/query.php:292 10 3

笔记(Notes)

实例

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册