我的代码有问题,我想在主页上显示3个特定页面,但我的代码不起作用。。这是代码。。
<?php $args = array(
\'post_type\' => \'page\',
\'post__in\' => array(3,5,7)
);
query_posts($args);
while (have_posts()) : the_post();
$do_not_duplicate = $post->ID; ?>
<div class ="date_author group">
<h3 class="date"><?php the_time(\'M j, y\');?></h3>
</div>
<h3 class="title"><a STYLE="text-decoration:none" href = "<?php the_permalink();?>"><?php the_title();?></a></h3>
<?php the_excerpt();?>
<?php endwhile; ?>