此功能将在首页显示任何类别的最后3篇帖子:
// Only top 3 posts from CHR category
add_action(\'pre_get_posts\', \'ad_filter_categories\');
function ad_filter_categories($query) {
if ($query->is_main_query() && is_home()) {
$query->set(\'category_name\',\'chatham-house-rules\');
$query->set(\'showposts\', 3);
}
我想用另外两个类别再做两次,但它只会用一个类别。它还默认为管理面板中的posts\\u per\\u page设置。有什么想法可以让我在头版按特定顺序从3个类别中获得3篇最新帖子吗?