Hi! How to use the DPL3 'include' parameter to pass page titles to a template, and then call that template recursively using the page titles?
Specifically, I'm trying to:
# Use DPL3 to generate a list of pages from a specific category
# Pass each page name to a custom template's parameter
# Have the template process each page name individually
# Repeat this process for all pages returned by the DPL3 query
I've tried using the 'format' parameter with %TITLE%, but I'm having trouble getting the template to process each page separately.
this is my code right now:
[[w:c:utaite:Template:Ark/sandbox/ProcessBirthdayCategory|Utaite Wiki]]
...
{{#dpl:
category=Birthday/{{{month}}}/{{{day}}}
|mode=userformat
|include={Ark/sandbox/ProcessSingerPage}:%TITLE%
|allowcachedresults=true}}
...
Thank you in advance!