Related to article (example): Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
m (Alianin moved page DPL:Example - Related to Article to Extension:DPL3/Example: Related to article without leaving a redirect: Changing namespaces.)
imported>FrozenPlum
(remove tempnote as openreferences was fixed in v3.5.0, and fix examples)
 
(10 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{DPL Manual|section=Examples|subsection=Related to Article}}
{{DPL manual|section=Examples|subsection=Related to article}}


=List articles that link to DPL:Manual article from themselves=
==List pages linked from article==
<pre>
The following example
{{#dpl:

|linksfrom=Apple
<pre><nowiki>{{#dpl:
format=,[[%PAGE%]],<br/>
|openreferences=yes
|openreferences=yes
|ordermethod=none
|ordermethod=none
|count=5
|linksfrom=DPL:Manual
}}
}}</nowiki></pre>
</pre>

Produces a list of pages linked from the [[Apple]] article, limited to 5 results, including links to non-existing pages (if any) due to the use of <code>openreferences=yes</code>.
Would produce a list of articles that link to DPL:Manual


'''Result:'''<br>
{{#dpl:
{{#dpl:
|linksfrom=Apple
format=,[[%PAGE%]],<br/>
|openreferences=yes
|openreferences=yes
|ordermethod=none
|ordermethod=none
|count=5
|linksfrom=DPL:Manual
}}
}}


=List templates are used by the DPL:Manual article=
==List templates used by an article==
<pre>
The following example
{{#dpl:
|usedby=Apple
|count=5
}}
</pre>
Produces a list of templates that are used by the [[Apple]] article.


'''Result:'''<br>
<pre><nowiki>{{#dpl:
{{#dpl:
format=,[[%PAGE%]],<br/>
|usedby=DPL:Manual
|usedby=Apple
|count=5
}}</nowiki></pre>
}}

Would produce a list of templates that are used by DPL:Manual

=IGNORE - DEBUG TESTING BY DEVELOPERS. THIS PAGE HAS AN ISSUE.=


== ==
Produces a list of articles whose title contains the word "Main" and includes the categories for each page.
<pre>
{{#dpl:
{{#dpl:
titlematch=DPL:Manual
|titlematch=%Main%
|addcategories=true
|addcategories=true
|format=,²{#replace:Category:%CATNAMES%¦²{comma}²¦<br/>Category:}²,<br/>
}}
}}
</pre>


'''Result:'''<br>
{{#dpl:
{{#dpl:
|titlematch=%Main%
mode=userformat
|addcategories=true
|format=,[[%PAGE%]],<br/>
|count=5
|escapelinks=true
|imagecontainer=DPL:Manual
}}
}}

[[Category:Miscellaneous examples]]

Latest revision as of 22:38, 16 January 2023

Manual Examples Related to article

List pages linked from article

{{#dpl:
|linksfrom=Apple
|openreferences=yes
|ordermethod=none
|count=5
}}

Produces a list of pages linked from the Apple article, limited to 5 results, including links to non-existing pages (if any) due to the use of openreferences=yes.

Result:
{{#dpl: |linksfrom=Apple |openreferences=yes |ordermethod=none |count=5 }}

List templates used by an article

{{#dpl:
|usedby=Apple
|count=5
}}

Produces a list of templates that are used by the Apple article.

Result:
{{#dpl: |usedby=Apple |count=5 }}

Produces a list of articles whose title contains the word "Main" and includes the categories for each page.

{{#dpl:
|titlematch=%Main%
|addcategories=true
}}

Result:
{{#dpl: |titlematch=%Main% |addcategories=true |count=5 }}