Select by recently changed (example)

From DynamicPageList3 Manual
Revision as of 03:02, 3 October 2022 by imported>FrozenPlum (Forgot to remove tempnote)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Manual Examples Select by recently changed

List pages recently edited

List the last edited pages from the Fruit examples category:

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|ordermethod=lastedit
|order=descending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |ordermethod=lastedit |order=descending |count=3 }}

List pages with the oldest last edit dates

List pages in the Fruit examples category with the oldest last edit dates.

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|ordermethod=lastedit
|order=ascending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |ordermethod=lastedit |order=ascending |count=3 }}

List the last revisions from edit date

List the last 3 revisions of Fruit examples which have an edit date later or equal to April 1, 2022:

{{#dpl:
|category=Fruit examples
|namespace=
|addeditdate=true
|allrevisionssince=2022-04-01
|ordermethod=lastedit
|order=ascending
|count=3
}}

Result:

{{#dpl: |category=Fruit examples |namespace= |addeditdate=true |allrevisionssince=2022-04-01 |ordermethod=lastedit |order=ascending |count=3 }}