Hello everyone.
I have the fowlloing code on my sidebar:
<?php
if (is_home())
{?>
some script here
<?}
elseif (in_category('369'))
{?>
some script here
<?}
else
{ ?>
some script here
<?}
?>
For some reason in_category won't work. But if i change it to is_category then i see the script working on the category page .
Any thoughts?