How to show Recent Posts by Category in Wordpress

In my Ask-Nik.info blog I wanted to display at the front page all the recent posts but not ordered by date.

I wanted to display every of my categories by 3 posts each. I've searched a lot of plugins but none did the job for me.

So I searched about a day how to do it by myself.

I finally manage to write a front page template which does this job for me. If you take a look at the Ask-Nik.info blog you will understand what I mean.

Here is the code :

<?php get_header(); ?>
	<div id="content" class="narrowcolumn">


	<?php

		$all_categor = get_all_category_ids();
		foreach($all_categor as $cat) :
			$page = (get_query_var('paged')) ? get_query_var('paged') : 1;
			query_posts('paged='.$page.'&showposts=3&cat='.$cat);


	?>

			<?php while (have_posts()) : the_post(); ?>
				<div class="post" id="post-<?php the_ID(); ?>">
					<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
						<?php the_title(); ?>
					</a></h2>
					<small>
						<?php the_time('F jS, Y') ?>
						<!-- by <?php the_author() ?> -->
					</small>
					<div class="entry">
						<?php the_content('Read the rest of this entry »'); ?>
					</div>
					<p class="postmetadata">Posted in
						<?php the_category(', ') ?>
						|
						<?php edit_post_link('Edit', '', ' | '); ?>
						<?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?>
					</p>
				</div>
			<?php endwhile; ?>
			<?php if (have_posts()) : ?>
				<div class="navigation">
					<div class="alignleft">
						<?php next_posts_link('« Previous Posts on '. get_cat_name($cat)) ?>
					</div>
					<div class="alignright">
						<?php previous_posts_link('Next Entries on '. get_cat_name($cat) .' »') ?>
					</div>
				</div>
			<?php endif; ?>
		<?php endforeach; ?>
	</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>

Trackback URL for this post:

http://www.igotanswers.info/trackback/64

Anonymous's picture

THGH

Welcome to CQ ugg boots! We are proud to carry a wide variety of ugg boots sale for your wearing pleasure. All CQ sb shoes are 100% Authentic sterling silver made guaranteed.Whether you love the look of nike sb shoes|nike dunks.We continue to work all the time.

Anonymous's picture

I have ll sb shoes sought it,

I have ll sb shoes sought it, finally, because nike sb shoes in the union of love,I have seen ll nike dunks, in a mystic ,that ugg boots sale and poets have imagined.this is what Buy shoes Store? at least ? I have found.

Anonymous's picture

In my opinion

Good written. I can recommend you a site, where you will be able to find the link for music or soft download

Post new comment

The content of this field is kept private and will not be shown publicly. If you have a Gravatar account, used to display your avatar.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA
Enter the characters shown in the image.