基本上,我在 WordPress 中使用自定义分类法(custom_tax)创建了一个自定义帖子类型。现在我创建了一个自定义查询,我想在其中获取保存自定义帖子的自定义类别并将其名称作为字符串输出。我在使用 WordPress 标准分类时这样做:
//Start the query
query_posts(array(
'showposts' => $posts,
'orderby' => 'asc',
'category_name' => $category
));
$temp_title = get_the_title();
$temp_link = get_permalink();
$temp_excerpt = get_the_excerpt();
$temp_time = get_the_date('Y-m-d');
$temp_categories = get_the_category(', ');
$temp_author = get_the_author();
$temp_content = get_the_content();
$i++;
$output2 .= "<li class='item' data-id='id-" . $i . "' data-type='" . $temp_categories . "'><a href='" . $temp_link . "' rel='prettyPhoto[portfolio]'><img class='' src='" . $path . "/library/timthumb.php?src=" . $image[0] . "&h=130&w=210&zc=1&q=100' alt='" . $temp_title . "' /></a></li>";
它就像一个魅力。现在我需要使用自定义帖子和自定义分类,并尝试了很多变体:
//Start the query
query_posts(array(
'post_type' => array('post', 'portfolio'),
'showposts' => $posts,
'orderby' => 'asc',
'category_name' => $category
));
$temp_title = get_the_title();
$temp_link = get_permalink();
$temp_excerpt = get_the_excerpt();
$temp_time = get_the_date('Y-m-d');
$temp_categories = get_the_terms( get_the_ID(), 'custom_cat', ', ' );
$temp_author = get_the_author();
$temp_content = get_the_content();
$i++;
$output2 .= "<li class='item' data-id='id-" . $i . "' data-type='" . $temp_categories . "'><a href='" . $temp_link . "' rel='prettyPhoto[portfolio]'><img class='' src='" . $path . "/library/timthumb.php?src=" . $image[0] . "&h=130&w=210&zc=1&q=100' alt='" . $temp_title . "' /></a></li>";
它不起作用。我已经尝试过 get_the_terms()、the_terms() 和 get_terms(),但没有一个像 get_the_category() 以前那样有效——它输出的是一个带有类别名称的字符串。我错过了什么?
非常感谢