目前我正在查询我在 WordPress 中拥有的所有页面并将它们显示在页面上。像这样:
<?php
query_posts(array('post_type' => 'page'));
while(have_posts())
{
$this_page = the_post();
echo the_content();
}
?>
问题是,我怎么能做同样的事情,但只针对一个特定的帖子?附带说明一下,如果我需要使用页面的 id,我在哪里可以找到它们,因为目前我看不到 WordPress 中的 id 页面。