Still sounds too difficult to me. At the beginning, my homepage had the following on it:
<!-- Featured Category 2 -->
<?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<div style="padding:5px 0px 5px 0px; text-align:justify;">
<div class="home-cats-100" style="padding:1px;"><a href="<?php the_permalink() ?>"><img style="padding:0px; margin:0px; border:0px;" height="100" width="100" src="<?php echo get_post_meta($post->ID, "Thumbnail", true); ?>" alt=" " /></a></div>
<a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>" rel="bookmark"><strong><?php the_title2('', '', true, '55') ?></strong></a>
<?php the_content_limit(220, "More »"); ?>
</div>
<?php endwhile; ?>
Is that something similar? I know it showd the entire post, including an image (want that out), but can this be ‘altered’ to show the first 3 posts made in one particular category?
it could also (there are 4 options) be:
!-- Featured Category 4 -->
<?php $recent = new WP_Query("cat=1&showposts=3"); while($recent->have_posts()) : $recent->the_post();?>
<div style="padding:5px 0px 5px 0px;">
<div class="home-cats-80" style="padding:1px;"><a href="<?php the_permalink() ?>"><img style="padding:0px; margin:0px; border:0px;" height="80" width="80" src="<?php echo get_post_meta($post->ID, "Thumbnail", true); ?>" alt=" " /></a></div>
<a href="<?php the_permalink() ?>" title="Permanent Link to <?php the_title(); ?>" rel="bookmark"><strong><?php the_title2('', '...', true, '25') ?></strong></a>
<?php the_content_limit(50, ""); ?>
</div>
But I am totally weak at understanding this..