0

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

我在想这样的事情:

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

1 回答 1

1

听起来您需要使用query_posts()where p = post_id (1)

<?php query_posts('p=1'); ?> 
<?php while (have_posts()) : the_post(); ?>
     <?php the_title(); ?>
     <?php the_content(); ?>
<?php endwhile; ?>
于 2012-08-24T07:36:40.330 回答