1

我已经创建了自定义帖子,我希望我网站中的一个页面显示 5 个最新的自定义帖子,如下所示:

<h1>Custom Posts 1</h1>
//show 5 of the most recent custom-posts-1 here

<h1>Custom Posts 2</h1>
//show 5 of the most recent custom-posts-2 here

我该怎么做?我查看了 wordpress 帖子模板文件,但我需要能够告诉我的页面要使用哪些帖子。我希望找到一个简单的功能,我只是添加到我的页面编辑器中(我已启用它以便我可以添加 php),但我找不到合适的功能。

4

1 回答 1

0

我建议将两组帖子放在不同的 WordPress 类别中。

然后,您可以使用get_posts拉回两个不同的列表并根据需要将它们打印出来。

<?php
    //A rough example
    $posts = get_posts(array( 
               'numberposts'   => 5,
               'category_name' => 'custom-posts-2',
               'orderby'       => 'post_date',
               'order'         => 'DESC'
             ));
?>
于 2012-03-20T15:00:43.567 回答