hi
how can i select post based on category?
i guess i need to use loop and category tags but don't know how!!
here's what i came up until now:
<!-- INIZIO DELLA COLONNA CON I CROSS LINK SINISTRA -->
<div>
<!-- Start the Loop. -->
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php if ( is_category('crosslink') ) {
echo 'crosslink';
} else {
echo 'other';
} ?>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
I exptected to see just as many 'crosslink' as my post in such category but what i see is 'other' for each of my post.
Any help?
VItto