我有这段代码可以在一个页面上显示 3 个最新页面。
所以现在有一个页面显示 3 个单独页面的内容。我希望这 3 页中的每一页都不要显示全部内容,而是显示一定数量的字符。之后应该有一个阅读更多链接,该链接指向单个页面。
有人可以帮助我朝着正确的方向前进吗?谢谢!
<?php
query_posts(array('showposts' => <number_of_pages_to_show>, 'post_parent' => <ID of the parent page>, 'post_type' => 'page'));
while (have_posts()) { the_post();
the_title();
the_content();
}
wp_reset_query(); // Restore global post data
?>