is_singular

函数
is_singular ( $post_types = '' )
参数
  • (string|string[]) $post_types Optional. Post type or array of post types to check against. Default empty.
    Required:
    Default: (empty)
返回值
  • (bool) Whether the query is for an existing single post or any of the given post types.
相关
  • is_page()
  • is_single()
定义位置
相关方法
is_singleis_searchis_sslis_main_queryis_year
引入
1.5.0
弃用
-

is_singular: 这个函数检查当前页面是否是一个单一的文章、页面或附件。如果该页面是一个单独的文章、页面或附件,则返回 true,否则返回 false。

确定查询是否为任何文章类型(文章、附件、页面、自定义文章类型)的现有单个文章。

如果指定了$post_types参数,该函数将额外检查该查询是否为指定的文章类型之一。

关于这个和类似的主题函数的更多信息,请查看《主题开发者手册》中的{@link Conditional Tags}文章。

function is_singular( $post_types = '' ) {
	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.0' );
		return false;
	}

	return $wp_query->is_singular( $post_types );
}

常见问题

FAQs
查看更多 >