Category shortcode not working?
i made a category named “chemistry”…then i put this code below in my page to see only “chemistry” questions on my page.
but instead i see questions from all category on that page…how can i fix this.thanks in advance.:)
Interesado (Buyer) commented
I have the same problem
Managed to solve this by using “categories” short code instead of “question_category” as in includes/shortcode-basepage.php is looking for this attribute.
So before I had:
[anspress question_category=”category-slug”]
And now is working with:
[anspress categories=”category-slug”]
You can request several categories by passing a comma separated string to it.
Let me check.