是否可以使用循环来查询特定帖子并显示在我的页面上发布内容,标题和自定义字段?
我正在想类似的事情:if (have_posts() && the_post().id == 66) : while (have_posts()) : the_post();
答案 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; ?>