Wordpress函数has Tag()函数检查帖子是否具有特定标签

WordPress函数has_tag()函数检查帖子是否具有特定标签

WordPress函数has_tag()函数检查帖子是否具有特定标签

  在 WordPress CMS内容管理系统中,has_tag()函数是 WordPress 中内置函数。WordPress PHP 函数has_tag()函数检查帖子是否具有特定标签

  WordPress 中的函数has_tag用于确定帖子是否具有一个或多个指定标签。此函数检查分配给帖子的标签,并返回一个布尔值,表示指定标签的存在或不存在。它可以在 WordPress 循环或条件语句中使用,根据与帖子相关的标签控制内容的显示。例如,如果帖子包含特定标签,它可以用于显示特定消息、样式或模板。该has_tag功能利用标记系统应用条件逻辑来帮助定制 WordPress 网站上帖子的行为和外观。

  推荐:[最新版]WordPress SEO插件Rank Math Pro

has_tag()函数基本语法

描述

  检查当前帖子是否具有任何给定的标签

用法

has_tag( $tag, $post );
if (has_tag('featured', 42)) {
  echo "Post 42 has the 'featured' tag.";
} else {
  echo "Post 42 does not have the 'featured' tag.";
}

Post 42 has the 'featured' tag.
  • $tag (string|int|array)(可选):要检查的标签名称、term_id、slug 或它们的数组。默认值:”
  • $post (int|WP_Post)(可选):要检查的帖子。默认为当前帖子。默认值:null

  推荐:WordPress函数add_network_option()添加新的网络选项

has_tag()函数

  在 WordPress 中,该has_tag()函数给定的标签将根据帖子标签的 term_id、名称和 slug 进行检查。
以整数形式给出的标签将仅根据帖子标签的 term_id 进行检查。如果没有给出标签,则确定帖子是否有任何标签(源文件可参考这里

function has_tag( $tag = '', $post = null ) {
	return has_term( $tag, 'post_tag', $post );
}

  推荐:Max Mega Menu插件教程WordPress添加超级菜单

如何使用has_tag()

  如果帖子有标签,则显示标签此代码将显示帖子的标签(如果有)。它应在循环内使用。

if (has_tag()) {
  the_tags();
} else {
  // Article untagged
}

  根据帖子元数据显示标签或类别如果帖子有标签,此代码将显示标签;否则,如果帖子有类别,它将显示类别。如果标签和类别均不存在,它将执行不同的操作。

if (has_tag()) {
  the_tags(); // show tags
} elseif (has_category()) {
  the_category(); // show category
} else {
  // do something different
}

  检查帖子是否具有特定标签此代码检查当前帖子是否具有特定标签,然后相应地显示消息。

if (has_tag('featured')) {
  echo "This post is featured.";
} else {
  echo "This post is not featured.";
}

  检查特定帖子是否具有特定标签此代码检查特定帖子(ID:42)是否具有特定标签,然后相应地显示消息。

if (has_tag('featured', 42)) {
  echo "Post 42 is featured.";
} else {
  echo "Post 42 is not featured.";
}

  检查帖子是否包含多个标签此代码检查当前帖子是否具有任何指定的标签,然后相应地显示一条消息。

if (has_tag(array('featured', 'important', 'highlight'))) {
  echo "This post has at least one of the specified tags.";
} else {
  echo "This post does not have any of the specified tags.";
}

  推荐:AliPay WordPress WooCommerce免费支付宝网关接口插件教程

  推荐:WordPress函数使用手册


晓得博客,版权所有丨如未注明,均为原创
晓得博客 » WordPress函数has_tag()函数检查帖子是否具有特定标签

转载请保留链接:https://www.pythonthree.com/wordpress-has-tag/

滚动至顶部