Loop with posts from taxonomies

Hello,

I’m trying to display post infos. Posts are linked with taxonomies, and taxonomies have children.

I tried :

<Loop type=taxonomy_term taxonomy=locations children=true>
  <div class="retailersList row" id="List{Field name}">
    <Loop type=retailers>
      Display post details by taxonomy
    </Loop>
  </div>
</Loop>

It works to display the list of taxonomies (retailersList) but in the posts loop (retailers), it’s always display all the posts, and not those linked to the taxonomy.

What is wrong or missing?
Thanks

I solved this:

<Loop type=taxonomy_term taxonomy=locations children=true>
  <div class="retailersList row" id="List{Field name}">
    <Loop type=retailers taxonomy=locations terms=current>
      Display post details by taxonomy
    </Loop>
  </div>
</Loop>
2 Likes

Heya:) I am glad that you found the missing piece of your puzzle:)
Thanks for sharing!
:smiling_face_with_three_hearts: