0

所以。我创建了一个自定义的 WordPress 分类法。我有多个帖子使用该分类法和该分类法下的各种术语。我想让 WordPress 做的是从所有帖子中吐出所有分类术语。我将把它们中的每一个都放在一个 rel="" 标记中,这样我就可以对 jQuery 有所了解了。

我用这样的普通旧 WordPress 标签完成了这项工作:

<?php
$posttags = get_tags();
if ($posttags) {
foreach($posttags as $tag) {
echo '<label><input type="checkbox" rel="' . $tag->slug . '">' . $tag->name .
'</label>';
}
}
?>  

它完美地工作。为每个标签制作一个复选框和标签。但现在我需要这些自定义分类术语。

我一直在摆弄:

$categories = get_terms('Year-taxonomy', 'orderby=name&hide_empty=0');
$cats = object_to_array($categories);

到目前为止没有工作。我在正确的轨道上吗?

4

2 回答 2

2

不精通 WordPress Codex,但设法弄明白了。

首先是功能:

function get_custom_terms($taxonomies, $args){
$args = array('orderby'=>'asc','hide_empty'=>true);
$custom_terms = get_terms(array($taxonomies), $args);
foreach($custom_terms as $term){
    echo 'Term slug: ' . $term->slug . ' Term Name: ' . $term->name;
}
}

然后在需要的地方调用函数:

<?php get_custom_terms('your_custom_taxonomy_name'); ?>
于 2012-03-17T05:14:57.597 回答
0

函数调用必须与函数名相同:

get_custom_terms('your_custom_taxonomy_name');

于 2013-11-29T14:12:29.747 回答