I’m currently using a hook for a category (18) for job posts.. that adds “Position Available” above the content…
<?php if ( is_category( ’18’ ))
{
echo ‘Position Available’;
}
?>
it works fine on the category feed.. but “Position Available” doesn’t show up when posts are also displayed on the home page feed.. only in the category feed. Is there a way to have it displayed on both feeds.. but ONLY those category posts.. and not the other posts that appear on the home page feed?
thx
Matt