Guest User

Untitled

a guest
Jul 15th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'category__and' => array( 2, 6 ),
  4. 'post_type' => 'aree'
  5. );
  6. $query = new WP_Query( $args );
  7.  
  8. ?>
  9. <?php while ( $query->have_posts() ) : $query->the_post(); ?>
  10. <h2><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
  11. <?php the_excerpt(); ?>
  12. <?php endwhile; ?>
Add Comment
Please, Sign In to add comment