我創建了自定義帖子和分類。現在我想要這樣做。獲取所有類別,然後顯示每個術語中的所有帖子
-
分類學名稱1
- 後1
- 柱2
- 柱3
- 交所有
-
分類學名稱2
- 後1
- 後2
- 柱3
- 交所有
-
分類學名稱4
- 後1
- 柱2
- 柱3
- 交所有
並繼續如此。 我發現了一個代碼,但這不起作用。
代碼
<?php
$taxonomy = 'category';
$param_type = 'category__in';
$term_args=array(
'orderby' => 'name',
'order' => 'ASC');
$terms = get_terms($taxonomy,$term_args);
if ($terms) {
foreach($terms as $term) {
$args=array(
"$param_type" => array($term->term_id),
'post_type' => 'post',
'post_status' => 'publish',
'posts_per_page' => -1,
'caller_get_posts'=> 1
);
$my_query = null;
$my_query = new WP_Query($args);
if($my_query->have_posts()) { ?>
<div class="category section">
<h3><?php echo 'Category '.$term->name;?></h3>
<ul><?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href="<?php the_permalink() ?>" rel="bookmark"
title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_title(); ?></a></li>
<?php endwhile; ?>
</ul>
</div>
<?php}
}}
wp_reset_query(); // Restore global post data stomped by the_post().?>
所以請幫助我。如何解決它。 謝謝