Title: HELP
Last modified: August 19, 2016

---

# HELP

 *  [bigtoff72](https://wordpress.org/support/users/bigtoff72/)
 * (@bigtoff72)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/)
 * Please i need to include the contents of a post on a page, i want the page to
   look exactly like a post (post heading, message) please can anyone help.

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

 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315604)
 * Have a look at [http://codex.wordpress.org/Pages#A_Page_of_Posts](http://codex.wordpress.org/Pages#A_Page_of_Posts)
 *  Thread Starter [bigtoff72](https://wordpress.org/support/users/bigtoff72/)
 * (@bigtoff72)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315631)
 * Thanks Esmi.
 *  Thread Starter [bigtoff72](https://wordpress.org/support/users/bigtoff72/)
 * (@bigtoff72)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315676)
 * i have created the PageOfPosts.php file but is it possible to have a different
   post from my front page, i need it to be blank so that i can input new posts 
   on it. I am a bit of a novice so please help
 *  [esmi](https://wordpress.org/support/users/esmi/)
 * (@esmi)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315770)
 * To show the most recent post from your front page, try replacing:
 *     ```
       $showposts = -1; // -1 shows all posts
       $do_not_show_stickies = 1; // 0 to show stickies
       $args=array(
          'category__in' => $cat,
          'showposts' => $showposts,
          'caller_get_posts' => $do_not_show_stickies
          );
       $my_query = new WP_Query($args);
       ?>
       ```
   
 * with:
 *     ```
       $showposts = 1; // show only 1 post
       $do_not_show_stickies = 1; // 0 to show stickies
       $args=array(
          'posts_per_page' => $showposts,
          'orderby' => date,
          'caller_get_posts' => $do_not_show_stickies
          );
       $my_query = new WP_Query($args);
       ?>
       ```
   
 *  Thread Starter [bigtoff72](https://wordpress.org/support/users/bigtoff72/)
 * (@bigtoff72)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315848)
 * Esmi is it possible to have two posts in one Blog? thanks

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

The topic ‘HELP’ is closed to new replies.

 * In: [Everything else WordPress](https://wordpress.org/support/forum/miscellaneous/)
 * 5 replies
 * 2 participants
 * Last reply from: [bigtoff72](https://wordpress.org/support/users/bigtoff72/)
 * Last activity: [16 years, 3 months ago](https://wordpress.org/support/topic/help-102/#post-1315848)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
