【发布时间】:2017-02-21 17:39:47
【问题描述】:
我试图弄清楚如何从已选中/选择显示在单个自定义帖子上的自定义帖子类型中获取分类(复选框)标签。下面的代码输出所有分类法,而不仅仅是检查过的分类法。
function get_terms_chekboxes($taxonomies, $args) {
$terms = get_terms($taxonomies, $args);
foreach($terms as $term){
$output .= $term->name ;
}
return $output;
}
echo get_terms_chekboxes('genre', $args = array('post_type' => 'movie','hide_empty'=>false));
如何获取检查分类标签。
谢谢。
【问题讨论】:
标签: php wordpress checkbox custom-post-type