Using dynamic content within a component looper provider

I’ve created a component and used some custom php to provide all custom taxonomies for a case study post type, then I’ve used this in the Component Parameters as a dropdown so I can select a specific category on some pages relating to that on my website, this part of it is working great.

However I also want to dynamically populate this within a case study/insight instead of having a component for each seperate taxonomy, would there be a way to use the current post taxonomy names within a looper provider to get related posts?

Hello @LukeGS,

Thanks for writing to us.

You can set the Looper provider as “Current post terms”, and then select the taxonomy. Please have a look at the given screenshot below.

About-The-Tests-Page-Cornerstone-09-23-2025_05_09_PM
You can use another looper and set the Looper provider as a query string, and you may use this query string to get the related posts.

 category_name={{dc:term:slug}}&post_type=YOUR_POST_TYPE&posts_per_page=3&offset=0&ignore_sticky_posts=1&post__in%5B0%5D={{dc:post:id}}

Thanks