I am using this code to show ad below single post but only if it is in specified category. Code is giving right out put but it is also showing up on archive pages. I just want to show on single post pages.
function demo_link() {
if (in_category('themes')) { ?>
Some code
<?php } else { ?>
Some code
<?php
}
}
add_action('thesis_hook_after_post_box', 'demo_link');