单页站点(WordPress),包括帖子

时间:2012-01-15 作者:ttt

我正在创建一个单页网站,显然希望包含博客帖子。我目前正在遍历这些页面,并使用\\u content()和\\u title()来显示它们。但是,\\u内容不包括博客页面上的博客帖子。我尝试了另一个循环,但没有成功。有什么想法可以给我指出正确的方向吗?谢谢

2 个回复
最合适的回答,由SO网友:HandiworkNYC.com 整理而成

要在循环中包括帖子和页面,请使用“post\\u type”参数:

<?php
$wp_query = new WP_Query();
$args = array(
     \'post_type\' => array(\'post\',\'page\')
);
$wp_query->query($args);
while ($wp_query->have_posts()) : $wp_query->the_post();
?>

<?php the_content(); ?>

<?php endwhile; ?>

http://codex.wordpress.org/Class_Reference/WP_Query

SO网友:Eve Freeman

从…起http://codex.wordpress.org/The_Loop_in_Action

if (have_posts()) :
  while (have_posts()) :
    the_post();
    the_content();
  endwhile;
endif;
更多信息:http://codex.wordpress.org/The_Loop

如果您需要更多帮助,请发布一些代码!

结束

相关推荐

Related Posts loop - offset

我已经为此工作了很多很多很多周了。我已经在这里和其他地方问过类似的问题,但似乎没有人能够解决这个问题。也许无论如何都不可能?我的相关帖子是基于标签的,代码如下所示:<?php $backup = $post; $tags = wp_get_post_tags($post->ID); if ($tags) {