【发布时间】:2017-02-22 05:57:50
【问题描述】:
我的代码大部分都在工作,但有一个小问题。
我期待看到这个输出...
猫
- 国内
- 布娃娃
狗
- 帕格
- 寻血猎犬
但我得到的是:
猫
- 国内
- 布娃娃
- 帕格
- 寻血猎犬
狗
- 国内
- 布娃娃
- 帕格
- 寻血猎犬
如您所见,每个帖子都列在每个类别中,而不仅仅是每个(对不起 - 无意的双关语)各自类别的帖子。
这是我的代码:
<?php
$cat_args = array(
'taxonomy' => 'animal_category'
);
$categories = get_categories($cat_args);
foreach ( $categories as $category ) {
$category_hero = get_field('hero', $taxonomy . '_' . $category->term_id); ?>
<div class="gallery">
<div class="gallery-hero">
<h2><?php echo $category->name; ?></h2>
<img src="<?php echo $category_hero["sizes"]["Full"]; ?>" />
</div>
<?php
$cat_ID = $category->id;
$post_args = array(
'showposts' => -1,
'post_type' => 'gallery',
'offset' => 0,
'category' => $cat_ID
);
$posts = get_posts($post_args);
foreach($posts as $post) { ?>
<div class="gallery-box">
<?php $gallery_image = get_field( "photos"); ?>
<a href="<?php the_permalink() ?>">
<img src="<?php echo $gallery_image[0]["sizes"]["Medium"]; ?>" />
<span><?php the_title(); ?></span>
</a>
</div>
<?php } ?>
</div>
在我看来一切都是正确的。我做错了什么?
【问题讨论】:
标签: php wordpress loops categories