从WP_QUERY访问实例变量

时间:2013-08-19 作者:Paul T

如果我查询wordpress数据库以获取最近发布的五篇文章,并且我想对它们中的每一篇进行不同的处理,是否有方法访问各个实例对象?

例如,如果我想对第二个post对象执行某些操作,是否有一种方法可以通过以下方式访问该对象?

$query = new WP_Query( $args );

$query[1] => access to the second post object from the query

1 个回复
最合适的回答,由SO网友:gmazzap 整理而成
$query = new WP_Query( $args );

if ( $query->have_posts( $query->have_posts()) ) : while( $query->have_posts()) :
  $query->the_post();
  global $post;
  switch ( $query->current_post ) {

    case 0 :
      // first post object is in var $post;
      echo \'The first post title is \' . $post->post_title;
      break;

    case 1 :
      // because we are insed the loop we can use all the post template tags
      echo \'The second post title is \' . get_the_title();
      break;

    ....

  }
endwhile; endif;
wp_reset_postdata();
结束

相关推荐

使用新的WP-Query()从循环中过滤后期格式;

嗨,我目前正在为我的博客构建一个主题。下面的代码指向最新的帖子(特色帖子)。因为这将有一个不同的风格比所有其他职位。然而我想过滤掉帖子格式:链接使用我在循环中定义的WP查询,因为它给我带来了更多的灵活性。我该怎么做呢? <?php $featured = new WP_Query(); $featured->query(\'showposts=1\'); ?> <?php while ($featured->have_post