Title: Display featured Posts on Page and adhere to &#8216;the more&#8217;
Last modified: August 19, 2016

---

# Display featured Posts on Page and adhere to ‘the more’

 *  Resolved [jcrich53](https://wordpress.org/support/users/jcrich53/)
 * (@jcrich53)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/featured-posts-page/)
 * I am trying to figure out how to have a series of featured posts that would appear
   on a static page on my WP blog.
 * I have found a number of plugins that will enable me to list the post title of
   posts from a particular category (e.g. Catlist plugins). However, what I want
   is the capacity to include the intro paragraph (everything before the “read more”
   break) to be included.
 * Any suggestions on doing this?
 * Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/featured-posts-page/#post-995779)
 * Try this:
 *     ```
       <?php
          $args=array(
          'cat'=>1,
          'showposts'=>10,
          'caller_get_posts'=>1
          );
       $my_query = new WP_Query($args);
       if( $my_query->have_posts() ) {
       while ($my_query->have_posts()) : $my_query->the_post(); ?>
       <p><small><?php the_time('m.d.y') ?></small> <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
   
       <?php
       global $more;
       $more=0;
       the_content('Read the rest of this entry &raquo;');
       <?php
       endwhile;
       }
       ```
   
 *  Thread Starter [jcrich53](https://wordpress.org/support/users/jcrich53/)
 * (@jcrich53)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/featured-posts-page/#post-995846)
 * Thanks.
 * Where should I place this? (What file?)
 *  [MichaelH](https://wordpress.org/support/users/michaelh/)
 * (@michaelh)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/featured-posts-page/#post-995997)
 * It could be your theme’s index.php or it could be a Page Template.
 * With the help of the [Template Hierarchy](http://codex.wordpress.org/Template_Hierarchy)
   article, determine what [Template](http://codex.wordpress.org/Templates) is ‘
   in force’ where you want to display that featured post info.
 * Also, if you use the technique described in the FAQ, [How can I have a static front page and posts display on a page called Blog?](http://codex.wordpress.org/FAQ_Working_with_WordPress#How_can_I_have_a_static_front_page_and_posts_display_on_a_page_called_Blog.3F),
   you would put that code in the myfront.php template described in that FAQ.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Display featured Posts on Page and adhere to ‘the more’’ is closed to
new replies.

## Tags

 * [meh_code](https://wordpress.org/support/topic-tag/meh_code/)

 * 3 replies
 * 2 participants
 * Last reply from: [MichaelH](https://wordpress.org/support/users/michaelh/)
 * Last activity: [17 years, 3 months ago](https://wordpress.org/support/topic/featured-posts-page/#post-995997)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
