Extension:RandomPages

From mediawiki.org
MediaWiki extensions manual
RandomPages
Release status: beta
Implementation Tag
Description Allows to return one or more randomly selected pages
Author(s) Aurelian Oancea
Latest version 0.5.0 (2018-04-06)
Compatibility policy Snapshots releases along with MediaWiki. Master is not backward compatible.
MediaWiki
Database changes No
License GNU General Public License 3.0 or later
Download
  • <randompages />
Quarterly downloads 6 (Ranked 142nd)
Translate the RandomPages extension if it is available at translatewiki.net

The Random Pages extension returns one or more randomly selected pages. The original version 0.2 doesn't work with MediaWiki 1.25+ (Original URL: http://locknet.ro/). Now version 0.5.0 supports all MediaWiki 1.25+ version.

Usage[edit]

RandomPages adds a new MediaWiki wiki parser tag: <randompages />

Available options
Name Type Description Default
limit int to control how many links should be fetched randomly from the database 150
namespace bool true to restrict only to the global namespace false
levels int levels of CSS applied to each entry 5
 <randompages limit="10" namespace="true" levels="10" />

Gets 10 random pages from the global namespace with 10 levels of style

Installation[edit]

  • Download and move the extracted RandomPages 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/RandomPages
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'RandomPages' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.