Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php $the_query = new WP_Query(array(
  2. 'post_type' => 'post','category_name' => 'genres','posts_per_page' => 6,'post_status' => 'publish'
  3. )); while ( $the_query->have_posts() ) : $the_query->the_post();
  4.  
  5. echo'<div class="wrapper"><div> // stuff with post title, image and excerpt </div><div>'.get_the_category_list($post->ID).'</div>';
  6. endwhile; wp_reset_postdata(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement