我和你一样也经历了同样的挣扎,谢谢我坐下来重新思考了整件事,你实际上需要的是选择所有类别,并将类别id传递给它。
由于使用dlm\\U下载,您需要执行以下操作,请从dlm\\U下载类别中获取术语
$cats = get_terms(\'dlm_download_category\');
通过类别和通道循环
query_posts
在它里面
所以
foreach ($cats as $cat)
{
$args = array(
\'post_type\' => \'dlm_download\',
\'dlm_download_category\' => $cat->slug,
);
query_posts($args);
if (have_posts()) :
while (have_posts()) : the_post();
// your stuff here
endwhile;
endif;
}
你来了
PS:如果你想用posts
不适用于custom post
比$cats = get_categories();
并通过\'cat\'
在争论中。
希望它的清晰和帮助。干杯