所以我在word press中遇到了问题。我想在word press中显示特定的帖子,但我不知道该怎么做,或者没有逻辑。我使用的这段代码效果很好。
<div id="1">
// retrieve one post with an ID of 1
query_posts('p=1');
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
// the content of the post
the_content();
endwhile;
?>
</div>
好!现在我希望它显示这样,似乎无法找到逻辑如何做到这一点
<div id="1">
// POST 1 here
</div>
<div id="2">
// POST 2 Here
</div>
<div id="3">
// POST 3 Here
</div>
谢谢
答案 0 :(得分:1)
你走了。 :)我已经通过ID修改了query_posts
对订单的调用,并按升序排序(例如:1,2,3,5,29,199等)。
<?php
// retrieve one post with an ID of 1
query_posts('orderby=ID&order=ASC');
global $more;
$more = 0;
// the Loop
while (have_posts()) : the_post();
?>
<div id="<?=get_the_ID()?>"><?=get_the_content()?></div>
<?php
endwhile;
?>