Advertisement
ridgey28

Custom WP Page

Dec 13th, 2012
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <?php
  2. /*
  3. Template Name: Homepage
  4. */
  5.  
  6. get_header(); ?>
  7.  
  8. <div id="primary">
  9.     <div id="content" role="main">
  10.         <?php
  11.             $args = array( 'numberposts' => 5, 'post_status'=>"publish",'post_type'=>"post",'orderby'=>"post_date");
  12.             $postslist = get_posts( $args );
  13.  
  14.             foreach ($postslist as $post) : setup_postdata($post); ?>
  15.                 <div class="entry-content">
  16.                 <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php the_title();?>" rel="bookmark"><?php the_title(); ?></a></h1>
  17.                     <?php the_excerpt()?>
  18.             </div><!-- .entry-content -->
  19.  
  20.         <?php endforeach; ?>
  21.  
  22.     </div><!-- #content -->
  23. </div><!-- #primary -->
  24.  
  25. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement