1

我试图弄清楚是否可以在一个页面上存档多个帖子类型,我为每个帖子类型都有一个单独的存档,工作正常,但我还想要另一个页面来存档它们。我对 WP 还是很陌生,所以我完全不确定这是否可能,但到目前为止我所做的事情并不能正常工作:

    <?php query_posts('post_type=type01'); ?>

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <a href="<?php the_permalink(); ?>">
    <div class="type01-div" data-value="<?php
$date = DateTime::createFromFormat('dnY', get_field('type01_date_select'));
echo $date->format('dnY');
?>">STUFF HERE</div>
    </a>

    <?php endwhile; endif; ?>


    <?php query_posts('post_type=type02'); ?>

    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>

    <a href="<?php the_permalink(); ?>">
    <div class="type02-div" data-value="<?php
$date = DateTime::createFromFormat('dnY', get_field('type02_date_select'));
echo $date->format('dnY');
?>">STUFF HERE</div>
    </a>

    <?php endwhile; endif; ?>

所以'type01'的所有帖子都显示了,但'type02'的帖子没有。可以同时存档吗?尽管在单独的循环中,因为每种帖子类型都将包装在不同的 div 类中。

4

1 回答 1

1

您需要为下一个循环重置查询,在循环之间添加:

<?php wp_reset_query(); ?>

我有一个类似的页面,并使用此代码来执行此操作:

<h2>type01</h2>
<?php
$args = array(
    'post_type' => array( 'type01' ),
    'order' => 'asc',
    'orderby' => 'title',
    'posts_per_page' => -1
);

$loop = new WP_Query( $args );?>
<?php while ( $loop->have_posts() ) : $loop->the_post();?>

        <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; ?>

<?php wp_reset_query(); ?>

</ul>

<h2>type02</h2>
<ul>
<?php
$args = array(
    'post_type' => array( 'type02' ),
    'order' => 'asc',
    'orderby' => 'title',
    'posts_per_page' => -1
);

$loop = new WP_Query( $args );?>
<?php while ( $loop->have_posts() ) : $loop->the_post();?>

        <li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; ?>

查看此链接了解更多信息:http ://codex.wordpress.org/Function_Reference/wp_reset_query

于 2013-02-19T11:50:53.347 回答