Extension:AdvancedMeta

Category:Unmaintained extensions#AdvancedMeta Category:GPL licensed extensions
MediaWiki extensions manual
AdvancedMeta
Release status: unmaintainedCategory:Unmaintained extensions
Implementation Page action Category:Page action extensions, Database Category:Database extensions
Description Allows per page editing of various meta tags for SEO reasons
Author(s)
Maintainer(s) Hallo Welt! GmbH
Latest version 3.0.0 (2018-05-17)
Compatibility policy Master maintains backward compatibility.Category:Extensions with master compatibility policy
MediaWiki 1.27+Category:Extensions with manual MediaWiki version
PHP 5.5+
Database changes Yes
Tables ext_meta
License GNU General Public License 2.0 or later
Download Category:Extensions in Wikimedia version control
  • $wgGlobalKeywordsMsgKey
  • $wgNoIndexOnOldVersions
  • advancedmeta-edit
Quarterly downloads 15 (Ranked 100th)
Translate the AdvancedMeta extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category:All extensions

The AdvancedMeta extension allows setting the robots, keywords and description meta tags for MediaWiki, for SEO purposes. Meta settings can be edited for individual pages, or entire namespaces can be denied from indexing by robots.

Usage

  • Open the AdvancedMeta dialog via the "More" menu: "Search engine optimization".
  • Enter the required information:
    • Title Alias: Shorten the URL to the most important search terms (e.g. advancedmeta-seo-extension)
    • Index: Allow robots to index the page
    • Follow: Allow robots to follow the links in the wiki
    • Description: Give the page a meaningful short description
    • Keywords: Assign meaningful keywords

Screenshots

Installation

  • Download and move the extracted AdvancedMeta 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/AdvancedMeta
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'AdvancedMeta' );
    
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Configure as required.
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration

Parameters

  • $adwmglobalkeywords
Use this parameter to add the keywords that should be available globally.
$adwmglobalkeywords = [ 'foo', 'bar', 'baz' ];

The following parameters are provided by MediaWiki core and are taken into account during configuration of the index to follow rules:

These are initially observed. After saving the index/follow information in the AdvancedMeta dialog only the specific information is valid.

Permission

  • "advancedmeta-edit"
By default sysops and bureaucrats have this permission allowing to edit meta elements. To give the group user edit permissions, set
$wgGroupPermissions['user']['advancedmeta-edit'] = true;

Compatibility

It is expected that this extension does not play with extensions that also work with keywords and descriptions. It is moreover incompatible with maintenance script "ImportImages.php".

See also

Category:HTML head extensions Category:Search engine optimization extensions Category:Extensions by HalloWelt
Category:All extensions Category:BeforePageDisplay extensions Category:Database extensions Category:Extensions by HalloWelt Category:Extensions in Wikimedia version control Category:Extensions with manual MediaWiki version Category:Extensions with master compatibility policy Category:GPL licensed extensions Category:HTML head extensions Category:LoadExtensionSchemaUpdates extensions Category:Page action extensions Category:Search engine optimization extensions Category:SkinTemplateNavigation::Universal extensions Category:Unmaintained extensions