Advertisement
spinoffintel

Display Recent Posts on static homepage

Jan 23rd, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <h2>Recent Posts</h2>
  2. <ul>
  3. <?php
  4. $args = array( 'numberposts' => '4' );
  5. $recent_posts = wp_get_recent_posts( $args );
  6.  
  7. foreach( $recent_posts as $recent ){
  8. echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
  9. }
  10. ?>
  11. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement