Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法将所有页面标题设置为小写。
我已经添加$wgCapitalLinks = false;但仍然无法正常工作。请帮我。
$wgCapitalLinks = false;
试试这个(添加到LocalSettings.php):
LocalSettings.php
$wgHooks['BeforePageDisplay'][] = 'fnSetTitle'; function fnSetTitle(&$out, &$sk) { $out->mPagetitle = strtolower($out->mPagetitle); return true; }