0

我使用以下代码显示每个帖子中的一个帖子。

  $post_types = array('a', 's','d','f','g');//post type names
  foreach( $post_types as $post_type) :
  // The Query
  $the_query = new WP_Query( array(  'post_type' => $post_type,
                                     'orderby' => 'post_date',
                                     'order' => 'DESC',
                                     ));
  // The Loop
  ?>
  <?php
  while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
  <?php if ( has_post_thumbnail() ) : ?>
    <div class="issue-content masonItem <?php echo $post_type; ?>">
      <?php
        $url = wp_get_attachment_url( get_post_thumbnail_id() );
        $resizedUrl = get_bloginfo('template_url')."/libs/timthumb.php?src=".$url."&amp;w=327&amp;h=204&amp;zc=1"; ?>
      <a href="<?php echo $post_type == 'news' ? site_url('/news')  : the_permalink(); ?>"><img src="<?php echo $resizedUrl; ?>" alt="<?php the_title(); ?>" class="masonry-thumb" /></a>

      <?php get_template_part( 'content-issues', 'page' );?>
    </div><!--issue-content--><!--Mason Item-->
    <?php endif; ?>
  <?php endwhile; 

现在我想显示每种帖子类型的 2 个帖子。我怎样才能做到这一点 ?我得到了 $post_count 的想法。但我不知道在我的代码中使用它。

4

2 回答 2

0

试试这个 :

'posts_per_page' => 2,
于 2013-04-13T07:17:28.073 回答
0

你试试这个

  $the_query = new WP_Query( array(  'post_type' => $post_type,'orderby' => 'post_date','posts_per_page' => 2,'order' => 'DESC'));
于 2014-01-06T14:26:49.600 回答