• I created a page to list all my post and I am using the following code, but it is listing from top to bottom, it list first all the old articles at the top and my recent and the bottom, not sure why is doing this. Any help would be much appreciated.

    <?php the_content(); ?>
    		           <?php $posts = get_posts('numberposts=10&order=DESC&orderby=post_title&category_name=news'); foreach ($posts as $post) : start_wp(); ?>
                          <div class="newsDate"><?php the_date(); echo ""; ?> </div>
                            <h2 class="newsTitle"><?php the_title(); ?></h2>
    		                  <?php the_excerpt(); ?>
                              <hr>
    
    					  <?php endforeach; wp_reset_query();?>
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Excerpt Read More’ is closed to new replies.