繁体   English   中英

WordPress列出所有类别和帖子

[英]Wordpress list all categories and posts

我的代码可以正常工作,但是有一个小问题。

我希望看到此输出...

  • 国内
  • 拉格多

小狗

  • 哈巴狗
  • 猎犬

但是相反,我得到了:

  • 国内
  • 拉格多
  • 哈巴狗
  • 猎犬

小狗

  • 国内
  • 拉格多
  • 哈巴狗
  • 猎犬

如您所见,每个帖子都列在每个类别中,而不仅仅是每个(抱歉-无意双关)相应类别的帖子。

这是我的代码:

<?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
$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->term_id;
    $post_args = array(
            'showposts'         => -1,
            'post_type'         => 'gallery',
            'offset'            => 0,
            //'category'          => $cat_ID
            'tax_query' => array(
                array(
                    'taxonomy' => 'animal_category',
                    'field' => 'id',
                    'terms' => $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 } ?>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM