我想要来自特定帖子ID的给定类别的列表帖子。
示例:来自categoryA或categoryB的帖子,其ID为1,2,3,4,5
答案 0 :(得分:2)
将get_posts
与post__in
和cat
一起使用可能会满足您的需求。
// Create your query argument array
$args = array(
'cat' => '1,2', // Where 1 and 2 are the category ids of Category A and Category B that you want posts containing either of.
'post__in' => array (1,2,3,4,5) // Where 1-5 are post ids
);
// Retrieve posts
$post_list = get_posts( $args );
$post_list
将根据传递给get_posts
的查询参数检索一系列帖子。
答案 1 :(得分:0)
将get_posts与category和include参数一起使用。