I want list posts from given categories which belong to certain post ids.
Example: Posts from categoryA or categoryB which has the id 1,2,3,4,5
I want list posts from given categories which belong to certain post ids.
Example: Posts from categoryA or categoryB which has the id 1,2,3,4,5
You must be logged in to post a comment.
Using
get_posts
with thepost__in
andcat
will likely meet your needs.:$post_list
will be an array of posts retrieved based on the query parameters passed toget_posts
.You can get more info on
get_posts
here and more info on valid query parameters here.Use get_posts with the category and include arguments.