Thread Starter
dilana
(@dilana)
It works! Thank you 🙂
I tried this
<?php if (in_category('1')) { ?>
<p>This is category 1</p>
<?php }else { ?>
<?php } ?>
Thread Starter
dilana
(@dilana)
I put this code in single.php in the loop… and is not working…
i tried also this:
<?php if (is_category('1')) { ?>
<p>This is category 1</p>
<?php }else { ?>
<?php } ?>
and this:
<?php if (is_category('1')) : ?>
<p>This is category 1</p>
<?php }else : ?>
<?php : ?>
and this:
<?php if( is_category('3, 14, 55, 11') ) echo 'Hello';
elseif echo 'Goodbye';?>
but no one of them works….