Manual:$wgDisableAnonTalk

This page is a translated version of the page Manual:$wgDisableAnonTalk and the translation is 57% complete.
最近の更新、新しいページ、ウォッチリスト、履歴: $wgDisableAnonTalk
匿名利用者 (未ログインの利用者) のトーク ページを無効にする。
導入されたバージョン:pre 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;
}