Advertisement
imranmodel32

Custom Texonomy Qurey

Nov 14th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <?php
  2. $temp = $wp_query;
  3. $wp_query = null;
  4. $wp_query = new WP_Query();
  5. $wp_query->query('showposts=-1&post_type=YOUR_POST_TYPE'.'&paged='.$paged);
  6.  
  7. while ($wp_query->have_posts()) : $wp_query->the_post();
  8. ?>
  9.  
  10. <!-- LOOP: Usual Post Template Stuff Here-->
  11.  
  12.  
  13. <?php the_terms( $post->ID, 'YOUR_TEXONOMY_NAME'); ?>
  14.  
  15.  
  16.  
  17.  
  18. <!-- LOOP: Usual Post Template Stuff Here-->
  19.  
  20. <?php endwhile; ?>
  21.  
  22. <?php
  23. $wp_query = null;
  24. $wp_query = $temp; // Reset
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement