按类别自定义帖子类型Wordpress查询

时间:2015-06-17 05:51:02

标签: wordpress custom-post-type categories custom-taxonomy

我有以下查询,它输出了一个名为STORIES的自定义帖子类型的类别列表。

<?php
$taxonomy = 'story-category';
$tax_terms = get_terms($taxonomy);
?>
<?php
foreach ($tax_terms as $tax_term) {
echo '<div class="category-grid-box">
<div class="category-grid-content">' . '<a href="' . esc_attr(get_term_link($tax_term, $taxonomy)) . '" title="' . sprintf( __( "View all posts in %s" ), $tax_term->name ) . '" ' . '>' . $tax_term->name.'</a> </div>
</div>  ';
}
?>

这会输出我的类别的链接列表,效果很好。

我的问题是,我不知道如何在下一页上写下查询,这将列出所选类别中的所有帖子。

所以我的查询列出了类别...... - 苹果 - 橘子 - 香蕉

如果您单击Apples并转到该页面,我会使用哪个查询列出所有具有APPLES类别的STORIES?

有什么想法吗?无法获得任何解决方案。

我有以下查询,但它列出了所有类别和其中的所有帖子。如何修改它以显示我所在页面的帖子?

<?php
$custom_terms = get_terms('story-category');
foreach($custom_terms as $custom_term) {
wp_reset_query();
$args = array('post_type' => 'stories',
'tax_query' => array(
array(
'taxonomy' => 'story-category',
'field' => 'slug',
'terms' => $custom_term->slug,
),
),
);
$loop = new WP_Query($args);
if($loop->have_posts()) {
echo '<h2>'.$custom_term->name.'</h2>';

while($loop->have_posts()) : $loop->the_post();
echo '<p><a href="'.get_permalink().'">'.get_the_title().'</a></p>';
endwhile;
}
}
?>

2 个答案:

答案 0 :(得分:1)

希望这有帮助:

{{1}}

Class Reference/WP Query

答案 1 :(得分:1)

您可以为自定义帖子创建自定义分类模板:LINK