之前介绍过 has_tag 和 has_category 函数,这两个函数其实都是 has_term 函数的封装。
has_term 支持任意文章分类、标签的检查。
函数原型:
has_term( string|int|array $term = '', string $taxonomy = '', int|WP_Post $post = null )
将给定的术语与post的term_id、名称和slug进行比较。以整数形式给出的术语将仅根据post的术语“term_id”进行检查。
如果未给出任何分类,则确定post是否有任何分类。
函数源码:
function has_term( $term = '', $taxonomy = '', $post = null ) {
$post = get_post( $post );
if ( ! $post ) {
return false;
}
$r = is_object_in_term( $post->ID, $taxonomy, $term );
if ( is_wp_error( $r ) ) {
return false;
}
return $r;
}
使用举例:
$hook_css_class = '';
if (has_term( 'action', 'hook-type' )) {
$hook_css_class = "is-action-hook";
} else {
$hook_css_class = "is-filter-hook";
};
-
WordPress函数:translate_nooped_plural 翻译并注册字符串WordPress函数:translate_nooped_plural 翻译并注册字符串
-
WordPress函数:number_format_i18n 数字国际化WordPress函数:number_format_i18n 数字国际化
-
WordPress函数:date_i18n 日期国际化WordPress函数:date_i18n 日期国际化
-
WordPress函数:esc_html_e 转义翻译的字符串并显示WordPress函数:esc_html_e 转义翻译的字符串并显示
-
WordPress函数:esc_attr_e 属性转义、翻译、显示WordPress函数:esc_attr_e 属性转义、翻译、显示
-
WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示WordPress函数:esc_attr_x 带上下文的转义属性,翻译显示
暂无评论,抢个沙发...