Manual:$wgDisableAnonTalk
最近の更新、新しいページ、ウォッチリスト、履歴: $wgDisableAnonTalk | |
---|---|
匿名利用者 (未ログインの利用者) のトーク ページを無効にする。 |
|
導入されたバージョン: | 1.1.0 未満 |
除去されたバージョン: | 使用中 |
許容される値: | (真偽値) |
既定値: | false |
その他の設定: アルファベット順 | 機能順 |
詳細
Disable links to talk pages of anonymous users (IPs) in listings on special pages like page history, recent changes, etc.
This does not disable the talk page itself, nor does it remove the "mytalk" link anonymous visitors see on top of every page. For that, use the PersonalUrls hook to remove the link to the talk page of anonymous users:
$wgHooks['PersonalUrls'][] = 'lfRemoveAnonUserpageLink';
function lfRemoveAnonUserpageLink( &$personal_urls, $title ) {
unset( $personal_urls['anontalk'] );
return true;
}