Advertisement
Guest User

Untitled

a guest
Nov 15th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $args = array(
  2. 'post_type' => 'familymessage',
  3. );
  4.  
  5. $q = new WP_Query($args);
  6.  
  7. if ( $q->have_posts() ) {
  8.  
  9. while ( $q->have_posts() ) { $q->the_post();
  10.  
  11.  
  12. }
  13. }
  14. wp_reset_postdata();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement