How do I post a widget in the articles (single) belonging to a particular category? What is the code? System is not a tag like this: is_single ('name_category') No, right?
How do I post a widget in the articles (single) belonging to a particular category? What is the code? System is not a tag like this: is_single ('name_category') No, right?
in_category('name_category')
the list of conditional tags: http://codex.wordpress.org/Conditional_Tags
Here I found nothing. I have not explained well. The Widget must be in the post (single) who are under a specific category. And do not post in all (single) web site!
try to combine the two:
is_single() && in_category('name')
You must log in to post.