|
Manual | Examples | Select by category |
Basic example[]
The following example:
{{#dpl: category=DPL3 }}
Would produce all the articles in the DPL3 category.
- Help:DPL3/Hit counters removed
- Help:DPL3/Compatibility
- Help:DPL3/Dplchapter
- Help:DPL3/Dplmatrix
- Help:DPL3/Dplnum
- Help:DPL3/Dplreplace
- Help:DPL3/Dplvar
- Help:DPL3/Example: Display images used
- Help:DPL3/Example: Related to article
- Help:DPL3/Example: Select by recently changed
- Help:DPL3/Example: Show sections from an article
- Help:DPL3/Example: Show templates parameters from an article
- Help:DPL3/General usage and invocation syntax
- Help:DPL3/Parameters: Controlling output order
- Help:DPL3/Parameters: Controlling output volume
- Help:DPL3/Parameters: Criteria for page selection
- Help:DPL3/Parameters: Other parameters
- Help:DPL3/Parameters: Controlling output format
- Help:DPL3/Manual
Further examples of syntax[]
To find all articles that feature two category names, such as all wooden chairs, an example would be:
<DPL> category = Chair category = Wood </DPL>
Or to find all articles that contain one category name, and then another category name from two possible options, such as listing all the chairs that are made of wood as well as all the chairs that are made of metal, would be:
<DPL> category = Chair category = Wood | Metal </DPL>
To sort results alphabetically:
<DPL> category = Chair ordermethod = titlewithoutnamespace order = ascending </DPL>