Guest User

Untitled

a guest
Apr 26th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <?php $terms = get_terms(['hide_empty' => true, 'taxonomy' => 'NOME_DA_TAXONOMIA']); ?>
  2.  
  3. <?php foreach ($terms as $term) : ?>
  4. <?php
  5. $posts = get_posts([
  6. 'post_type' => 'NOME_DO_POST_TYPE',
  7. 'tax_query' => [
  8. [
  9. 'taxonomy' => 'NOME_DA_TAXONOMIA',
  10. 'terms' => $term->term_id,
  11. ],
  12. ],
  13. ]);
  14. ?>
  15. <div>
  16. Titulo da categoria: {{ $term->name }}
  17. <div class="carousel">
  18. <?php foreach ($posts as $post) : the_post($post); ?>
  19. Titulo do post: {{ get_the_title() }}
  20. <?php endforeach; ?>
  21. </div>
  22. </div>
  23. <?php endforeach; ?>
Add Comment
Please, Sign In to add comment