Wordpress:获取特定类别的帖子

时间:2012-01-03 11:41:50

标签: wordpress

我想要来自特定帖子ID的给定类别的列表帖子。

示例:来自categoryA或categoryB的帖子,其ID为1,2,3,4,5

2 个答案:

答案 0 :(得分:2)

get_postspost__incat一起使用可能会满足您的需求。

// 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的查询参数检索一系列帖子。

您可以获取有关get_posts here的更多信息以及有关有效查询参数here的更多信息。

答案 1 :(得分:0)

get_posts与category和include参数一起使用。