获取具有循环的特定帖子以填写站点的特定区域

时间:2012-08-24 07:29:45

标签: php wordpress

是否可以使用循环来查询特定帖子并显示在我的页面上发布内容,标题和自定义字段?

我正在想类似的事情:

if (have_posts() && the_post().id == 66) : while (have_posts()) : the_post();

1 个答案:

答案 0 :(得分:1)

听起来你需要使用query_posts(),其中p = post_id(1)

<?php query_posts('p=1'); ?> 
<?php while (have_posts()) : the_post(); ?>
     <?php the_title(); ?>
     <?php the_content(); ?>
<?php endwhile; ?>