Extension:MetaMaster
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
MetaMaster Release status: unmaintained |
|
---|---|
Implementation | Parser function |
Description | A parser function that allows adding HTML <meta> tags to the page header |
Author(s) | Ike Hecht (tosfostalk) |
Latest version | 0.1 (October 2017) |
MediaWiki | 1.25+ |
PHP | 5.6+ |
Database changes | No |
License | GNU General Public License 2.0 |
Download | README |
|
|
Translate the MetaMaster extension if it is available at translatewiki.net | |
The MetaMaster extension is a simple extension that allows adding HTML <meta> tags using a parser function. It supports any text as the name and description.
Installation[edit]
- Download and place the file(s) in a directory called
MetaMaster
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'MetaMaster' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
Usage[edit]
{{#metamaster:name|content}}
Where name represents the name attribute of the <meta> tag and content represents the content attribute. There can be multiple tags per page.
Example[edit]
{{#metamaster:date|2002-04-04}}
This results in the following tag being added to the HTML head section:
<meta name="date" content="2002-04-04" />
The extension can also be used to add the ever-desired meta description tag, such as in this example:
{{#metamaster:description|This is some text description.}}
Which results in:
<meta name="description" content="This is some text description." />