返回介绍

is_single()

发布于 2017-09-11 01:26:15 字数 3925 浏览 1212 评论 0 收藏 0

is_single( int|string|array $post = '' )

Is the query for an existing single post?


description

Works for any post type, except attachments and pages

If the $post parameter is specified, this function will additionally check if the query is for one of the Posts specified.


参数

$post

(int|string|array) (Optional) Post ID, title, slug, or array of such.

Default value: ''


返回值

(bool) Whether the query is for an existing single post.


源代码

File: wp-includes/query.php

function is_single( $post = '' ) {
	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_single( $post );
}

更新日志

Versiondescription
1.5.0Introduced.

More Information

  • See Also: is_singular()
  • Although is_single() will usually return true for attachments, this behavior should not be relied upon. It is possible for $is_page and $is_attachment to be true at the same time, and in that case $is_single will be false. For this reason, you should use is_attachment() || is_single() if you want to include attachments, or use is_singular() if you want to include pages too.

相关函数

Uses

  • wp-includes/l10n.php: __()
  • wp-includes/class-wp-query.php: WP_Query::is_single()
  • wp-includes/functions.php: _doing_it_wrong()

Used By

  • wp-includes/general-template.php: wp_title()
  • wp-includes/link-template.php: get_next_posts_page_link()
  • wp-includes/link-template.php: get_next_posts_link()
  • wp-includes/link-template.php: get_previous_posts_page_link()
  • wp-includes/link-template.php: get_previous_posts_link()
  • wp-includes/link-template.php: adjacent_posts_rel_link_wp_head()
  • wp-includes/link-template.php: get_boundary_post()
  • wp-includes/post-template.php: get_body_class()
  • wp-includes/canonical.php: redirect_canonical()
  • wp-includes/comment-template.php: comments_template()
  • Show 5 more used by Hide more used by

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 2You must log in to vote on the helpfulness of this note Contributed by Codex
    
    is_single();
    // When any single Post page is being displayed.
    
    is_single('17');
    // When Post 17 (ID) is being displayed.
    
    is_single(17);
    // When Post 17 (ID) is being displayed. Integer parameter also works
    is_single('Irish Stew');
    // When the Post with post_title of "Irish Stew" is being displayed.
    
    is_single('beef-stew');
    // When the Post with post_name (slug) of "beef-stew" is being displayed.
    
    is_single(array(17,'beef-stew','Irish Stew'));
    // Returns true when the single post being displayed is either post ID 17,
    // or the post_name is "beef-stew", or the post_title is "Irish Stew".
    // Note: the array ability was added in version 2.5.
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文