Posts from single category in home.php
-
i am lost and probably the most professionals here don’t recognize my question as a question, but maybe you can still help me.
I try to show results from one catehory only (cat=5) on the start home.php
Currently i am using this code:
<?php if (have_posts()) { while (have_posts()) { the_post(); ?> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> <?php } } else { ?> <?php } ?>i tried to add this:
<?php if (have_posts()) { while (have_posts()) { the_post(); query_posts('cat=5'); ?><h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <p><?php the_excerpt(); ?></p> <?php } } else { ?> <?php } ?>Any idea what is wrong? Obviuosly i run into a never ending loop, but i am to less PHP programmer to get this running. Sorry, but every input is welcome
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
The topic ‘Posts from single category in home.php’ is closed to new replies.