返回介绍

has_category()

发布于 2017-09-11 00:49:14 字数 2384 浏览 1049 评论 0 收藏 0

has_category( string|int|array $category = '',  int|object $post = null )

Check if the current post has any of given category.


description


参数

$category

(string|int|array) (Optional) The category name/term_id/slug or array of them to check for.

Default value: ''

$post

(int|object) (Optional) Post to check instead of the current post.

Default value: null


返回值

(bool) True if the current post has any of the given categories (or any category, if no category specified).


源代码

File: wp-includes/category-template.php

function has_category( $category = '', $post = null ) {
	return has_term( $category, 'category', $post );
}

更新日志

Versiondescription
3.1.0Introduced.

相关函数

Uses

  • wp-includes/category-template.php: has_term()

Used By

  • wp-includes/category-template.php: in_category()

User Contributed Notes

  1. Skip to note content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note Contributed by Mithun Raval

    The current post has set the categories that time this function will return true.
    if you want to check specific category is set for this post.

    if (has_category('Category_name',$post->ID))

    If you want to use it in The Loop, you don’t need to specify the ID.

    if (has_category('Category_name'))

    Check multiple category:

    if(has_category(array('category_name_1', 'category_name_2')))

    Your note is awaiting moderation.

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

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

发布评论

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