Conditional Widget for Ad Category
Trying to use widget logic to drop a widget into an ad detail page where the ad is in a particular category. I can use conditional widgets on the category page, for instance:
is_tax('ad_cat', 'furniture')
But I can't get it to show up on the single ad page. Any suggestions?
I've tried this:
if (has_term( 'furniture', 'ad_cat' ) )
But no go. Anyone encountered a solution to this?