Extension:MetaDescriptionTag

From mediawiki.org
This page is a translated version of the page Extension:MetaDescriptionTag and the translation is 44% complete.
MediaWiki 拡張機能マニュアル
MetaDescriptionTag
リリースの状態: 安定
実装 タグ
説明 Provides a tag for adding a custom ‎<meta> description to the document's ‎<head>
作者 Dror S., Joshua C. Lerner (original author)
最新バージョン 0.4.0 (2017-05-22)
MediaWiki 1.25+
データベースの変更 いいえ
ライセンス MIT ライセンス
ダウンロード
下記参照
‎<metadesc>

The MetaDescriptionTag allows users to add a ‎<meta> description into a page's ‎<head>.

インストール

  • ダウンロードして、ファイルをextensions/フォルダー内のMetaDescriptionTagという名前のディレクトリ内に配置します。
  • 以下のコードを LocalSettings.php ファイルの末尾に追加します:
    wfLoadExtension( 'MetaDescriptionTag' );
    
  • Yes 完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。

使用法

Once installed, editors of your wiki can add a ‎<meta> description tag by adding the following to the article text:

<metadesc>PageDescription</metadesc>

Where PageDescription would be replaced by the desired meta description.

For example, the above would become:

<meta name="description" content="PageDescription" />

Usage through a template

Say for example you want use a template to set the meta description to something like:

<metadesc>Extract from the article ARTICLETITLE</metadesc>

Create a template called (for example) "Template:Metadesc". Add the following content:

{{#tag:metadesc | Extract from the article {{{1}}} }}

In the article to which you set the meta description, add:

{{metadesc|{{PAGENAME}} }}

更新履歴

0.4.0

This is re-write to make it compatible with more modern MediaWiki practices and make sure it works nicely with MediaWiki 1.27+:

  • Extension Registration (extension.json)
  • json i18n files - An actual README file! :-)
  • Switching to semantic versioning.
0.3

Fix i18n to work with v1.16+, sanitize output using htmlspecialchars().

0.2

Change syntax to <metadesc>some content</metadesc> to support template variable substitution.

0.1

Initial release.

関連項目