Guest User

Untitled

a guest
Jun 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. $this_post_cat_arr = array("16", "9");
  3.  
  4. $recent = new WP_Query(array(
  5. "post__not_in" => array(get_the_ID()),
  6. "showposts" => 3,
  7. "category__in" => $this_post_cat_arr
  8. ));
  9.  
  10. while ($recent->have_posts()) : $recent->the_post(); ?>
  11. <a href="<?php the_permalink() ?>"><?php the_title(); ?></a>
  12. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment