i’m new with wordpress and php, but i need to get the recent posts from recent categories. I tried to take the categories of recent posts and add them to an array with four element of categories. Then bring out the last two posts of these categories. For this I need a little help. Thanks !
Share
So first you would want to get the categories using something like this.
Then you would want to take those categories and make a new WP_Query that is filtered for those categories (probably using
category__in.So something like
Note that the code above has not been tested, but should be fairly close.