Guest User

Untitled

a guest
Jun 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <h2>Recent Posts</h2>
  2. <ul>
  3. <?php
  4. $recent_posts = wp_get_recent_posts(array('post_type'=>'books','stories','movies'));
  5. foreach( $recent_posts as $recent ){
  6. echo '<li><a href="' . get_permalink($recent["ID"]) . '" title="Look '.esc_attr($recent["post_title"]).'" >' . $recent["post_title"].'</a> </li> ';
  7. }
  8. ?>
  9. </ul>
  10.  
  11. 'post_type' => array('books', 'movies', 'tvshows')
Add Comment
Please, Sign In to add comment