Guest User

Untitled

a guest
Mar 19th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php
  2. $args = array(
  3. 'post_type' => 'oferta',
  4. 'orderby' => 'menu_order',
  5. 'order' => 'ASC',
  6. 'posts_per_page' => -1
  7. );
  8.  
  9. $loop = new WP_Query($args);
  10.  
  11. while ( $loop->have_posts() ) : $loop->the_post();
  12.  
  13. echo "<pre>";
  14. var_dump(get_the_category($post->ID));
  15. echo "</pre>";
  16. ?>
  17.  
  18. <?php endwhile; ?>
  19.  
  20. <?php
  21. $taxonomia = "sua taxonomia";
  22. $terms = get_terms($taxonomy, array(
  23. "orderby" => "count",
  24. "hide_empty" => false,
  25. ));
  26.  
  27. foreach($terms as $term) {
  28. // faรงa alguma coisa
  29. }
Add Comment
Please, Sign In to add comment