Display posts from Category
-
Hi.
I have two feeds on one of my pages. I want both of them to display posts from different categories. I’ve tried researching and implementing a few differing codes and can’t get it to work with my current code.
I’ve listed the code I’m using to call the loop bellow.
<?php $args = array( 'numberposts' => 5, 'order'=> 'DESC', 'orderby' => 'date' ); $postslist = get_posts( $args ); foreach ($postslist as $post) : setup_postdata($post); ?> <h9><a class="postname" href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <p class="date"><?php the_time('F jS, Y') ?></p> <?php the_excerpt(); ?> <hr class="postbreak"> <?php endforeach; ?>Your help would be greatly appreciated!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Display posts from Category’ is closed to new replies.