我正在运行以下查询:
<?php $parent = $post->ID; ?>
<?php query_posts('showposts=3&orderby=parent&post_type=page&post_parent='.$parent); while (have_posts()) : the_post(); ?>
<div id="home-container" class="post-<?php the_id();?>">
<div id="home-thumb">
<?php the_post_thumbnail('home-thumbs');?>
</div>
<div id="home-title">
<h1><?php the_title();?></h1>
</div>
<div id="home-content">
<?php the_content();?>
</div>
</div>
<?php endwhile; ?>
我正在尝试包含ID为2,15和23的某些帖子帖子,然后排除其他所有内容。我认为这将是一个像下面这样的简单过程,但我错了:
<?php query_posts('include=2,15,23&showpost=3&orderby=parent&post_type=page&post_parent='.$parent); while (have_posts()) : the_post(); ?>
任何帮助将不胜感激,
感谢Dan
答案 0 :(得分:1)
如果您只想显示这三个帖子,我认为此链接对您有用 http://wordpress.org/support/topic/how-to-retrieve-multiple-pages-using-query_posts