Viewing 4 replies - 1 through 4 (of 4 total)
  • drmike

    (@drmike)

    Please take a look at this and see if it helps:

    The_Loop_in_Action

    Thread Starter alextababa

    (@alextababa)

    thanks drmike.

    but what i don’t know is how to have the main index point to a category page. i was wondering if there was a simpler way…

    Vietson

    (@limited)

    I use something like this..

    <?php query_posts('cat=1&showposts=1'); ?>
    <?php while (have_posts()) : the_post(); ?>
    
    	Your Post Content
    	Replace cat=1, where 1 is the category number...
    	showposts=1, where 1 is the number of post you want to show.
    
    	<?php endwhile; ?>
    Thread Starter alextababa

    (@alextababa)

    ok, that makes sense.

    thanx !

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘make the homepage post only one category’ is closed to new replies.