使用post__in
键而不是include
从特定的帖子ID获取帖子。
$args = array(
\'post_type\' => \'testimonials\',
\'posts_per_page\' => 4,
\'orderby\' => \'ID\',
\'post__in\' => array(883, 563, 568, 106),
);
和至
order posts
由
given posts ids
, 可以使用以下数组。
$args = array(
\'post_type\' => \'testimonials\',
\'posts_per_page\' => 4,
\'orderby\' => \'post__in\',
\'post__in\' => array(883, 563, 568, 106),
);