$post in wp_query?

时间:2011-11-18 作者:andred

如何在WP\\U查询启动循环中获取$post变量?我必须获得摘录、原始$post->post\\u内容和其他内容。这就是为什么我必须访问变量本身。

我怎样才能做到这一点?

提前感谢您!

2 个回复
最合适的回答,由SO网友:Tom J Nowell 整理而成
$query = new WP_Query( $args );
while( $query->have_posts() ) {
    // this fills in the $post global with the next post from the query
    $query->the_post();
    // we\'re now ina  classic wordpress loop, and can use all the usual stuff
    the_title();
    the_content();
    echo $post->post_content;
}
// lets clean up after ourself so else we might mess up other queries and function calls
wp_reset_postdata();
SO网友:Milo
$your_query = new WP_Query( $args );
while( $your_query->have_posts() ) :
    $your_query->the_post();

    echo $your_query->post->post_content;

endwhile;
结束

相关推荐

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

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