First of all thnk you all so much for the help and cush a great app that is wordpress.
I´m trying to print a certain category post, but as im new to wp and php i can´t figure it out why my try is not working.. please anyone?
<?php if(have_posts() && is_category('3')) : ?>
<?php while(have_posts()) : the_post(); ?>
<div id="featured">
<h2>FEATUREDWORK</h2>
<div class="imageElement" id="post-<?php the_ID(); ?>">
<div class="lead-image-wrapper">
<h2><?php the_title(); ?></h2>
<h3><?php the_excerpt_rss(10,2); ?></h3>
<h4><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>">+ Details on this project</a></h4>
</div>
<!-- img from rss trick -->
<?php //the_excerpt_rss(0); ?>
</div>
<p class="posted_on">Posted on 18 March 2008- <?php single_cat_title(); ?> - </p>
</div>
<?php endwhile; ?>
<?php endif; ?>