Hi! I’d like to know if there’s a way to pass parameters from one provider to another. For example, I have a Looper Provider that populates data from a list parameter ( group[]
), and this list contains a text field that holds a post ID. I’d like the Looper Consumer of this provider to retrieve that ID for each item in the list — for example, using {{dc:looper:field key="id"}}
— and use it within the JSON parameters of a custom Looper Provider, like: { "id": "{{dc:looper:field key='id'}}" }
Then, retrieve that ID in the custom function to return the corresponding post data.
Is this possible? Or should I take a different approach to achieve it?
Thanks in advance.