wordpress category conditional on attachment page
How do I check the category on the image.php theme file in Wordpress? I tried in_category('categoryname') but it did not work. I want to use it outside of the loop. (Btw, the function also did not wo开发者_如何学Crk inside of the loop...) I need this to show banners according to the categories of the post.
I guess the problem is that the attachment is not associated with the category of the post?
Try in_category("foo", $post->post_parent)
精彩评论