Extension:PlaceNewSection

From mediawiki.org
MediaWiki extensions manual
PlaceNewSection
Release status: stable
Implementation Extended syntax
Description Controls placement of new sections
Author(s) Nx, Ernstkm
MediaWiki 1.35+
License GNU General Public License 2.0 or later
Download
Quarterly downloads 2 (Ranked 147th)
Translate the PlaceNewSection extension if it is available at translatewiki.net

The PlaceNewSection extension introduces two magic words, __ADDNEWSECTIONBELOW__ and __ADDNEWSECTIONABOVE__, that control placement of new talk page sections.

Usage[edit]

Where __ADDNEWSECTIONBELOW__ is placed within a page, sections created from the "Add topic" tab appear directly below.
This is the opposite of MediaWiki's default behavior, which is to add new sections at the very end of the article. The effect of using this magic word in the article's lead section is to put newly-added sections in reverse-chronological order; that is, newer sections at the top, older sections at the bottom. This can be useful for journal entries or meeting minutes, where you would prefer the latest updates to be at the top of the page.
Where __ADDNEWSECTIONABOVE__ is placed within a page, new sections will be added directly above.
This is similar to the MediaWiki default behavior for talk pages, except anything below this magic word will stay at the bottom. This is useful, for example, to keep "See also" or "References" sections below any other comments on a talk page.

Note that existing sections are not reordered at the moment you add (or remove) the magic word. You would need to reorder any existing sections manually.

Installation[edit]

  • Download and move the extracted PlaceNewSection folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/PlaceNewSection
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'PlaceNewSection' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Caveats[edit]

The magic words provided by this extension don't seem to work in a transclusion.[1]

If you had this content, for example, in a template named "newsectiontop"

__TOC__ __NEWSECTIONLINK__ __ADDNEWSECTIONBELOW__

and transcluded it into and article's lead section like this

{{newsectiontop}}

…the magic words controlling the table of contents and "Add topic" tab would work as expected when transcluded, but new sections would still show up at the bottom of the page.

The workaround is to subst: the template into the lead of your article first:

{{subst:newsectiontop}}

References[edit]