我正在使用wordpress作为网站博客的快速修复工具。我在外部页面中使用了一个短循环(我获得了正确使用wordpress设置的链接):
query_posts(\'p=\'.$thisPost); //$thisPost enumerates 1,2..etc up to a maximum number of posts
<?php
while (have_posts()): the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php endwhile; ?>
wordpress在数据库中将post#2存储为“p=6”的问题,这基本上破坏了此设置。
我如何从一开始就得到一个2号(或3号或n号)的帖子?