1

我有 2 组分类法用于网站,默认 WP 类别,以及我通过 functions.php 为内容类型('type')创建的另一组

add_action( 'init', 'content_taxonomy', 0 );
function content_taxonomy() {

register_taxonomy(
'type',
'post',
array(
    'hierarchical' => true,
    'label' => 'Type of Content',
    'query_var' => true,
    'rewrite' => false
    )
  );
};

然后,在我的 category.php 文件中,我想在单个 WP 类别中显示所有帖子,然后能够按其下方的内容类型类别过滤它们(链接到视频、博客帖子、文章等的帖子) . 所以,我的循环如下:

$category = get_category( get_query_var( 'cat' ) );
$cat_id = $category->cat_ID;

query_posts('cat=".$cat_id.", 121') // 121 Being the Video Custom Taxonomy

然后我跟进循环。但是,我似乎无法让它显示自定义分类类别,它只是抓取 WP 类别。

4

1 回答 1

0

您似乎将自定义分类法视为另一个类别。如果您的猫是 7 岁,您的代码将评估为:

query_posts('cat=7, 121');

您的 query_posts 行不应该是这样的:

query_posts( 'cat=' . $cat_id . '&type=video' );
于 2013-02-14T20:49:54.417 回答