I'm trying to get a special meta statement to appear in the <head> section and only echo if the post is under the parent category. is_in_descendant_category appears to not work.
The code below does not add the code to the header and I've tried for hours to get this to work.
<?php if(is_category('33595')): ?>
<meta name="googlebot" content="noindex, follow" />
<?php endif; ?>
Any suggestions?