Select by category-related criteria (examples): Difference between revisions

Content added Content deleted
No edit summary
(added examples)
Line 1: Line 1:
{{DPL Manual|section=Examples|subsection=Select by Category}}
{{DPL Manual|section=Examples|subsection=Select by Category}}

== Basic example ==


The following example:
The following example:
Line 7: Line 9:
}}</nowiki></pre>
}}</nowiki></pre>


Would produce all the articles in the DPL category:
Would produce all the articles in the DPL category.


{{#dpl:
{{#dpl:
category=DPL
category=DPL
}}
}}

== Further examples of syntax ==

To find all articles that feature two category names, an example would be:

<nowiki>
<DPL>
category = Chair
category = Wood
</DPL>
</nowiki>

Or to find all articles that contain one category name, and then another category name from two possible options, would be:

<nowiki>
<DPL>
category = Chair
category = Wood | Metal
</DPL>
</nowiki>