Mediawiki 擴展:修訂版本之間的差異
出自六年制學程
(→外掛 CSS) |
|||
第 17 行: | 第 17 行: | ||
$wgCSSPath = ''; # 參考到伺服器的文件根目錄 | $wgCSSPath = ''; # 參考到伺服器的文件根目錄 | ||
$wgCSSPath = 'https://example.org/stylesheets'; # 參考到其他的 site</pre> | $wgCSSPath = 'https://example.org/stylesheets'; # 參考到其他的 site</pre> | ||
+ | |||
+ | ===用法=== | ||
+ | 在 wiki 頁中加: | ||
+ | *{{#css:MyStyles.css}} | ||
+ | |||
+ | 更多資料請參考:[https://www.mediawiki.org/w/index.php?title=Extension:CSS/zh&variant=zh-tw 官網] |
2019年1月28日 (一) 22:00的修訂版本
外掛 CSS
安裝
- 下載檔案,並將其放在 extensions 目錄下的CSS目錄內。
- 在 LocalSettings.php 中加入:
- MediaWiki 1.29或更早版本:require_once "$IP/extensions/CSS/CSS.php";
- 較晚近的版本:wfLoadExtension('CSS');
可用參數:
$wgCSSPath = false; # 預設值,參考到 $wgScriptPath $wgCSSPath = ''; # 參考到伺服器的文件根目錄 $wgCSSPath = 'https://example.org/stylesheets'; # 參考到其他的 site
用法
在 wiki 頁中加:
- {{#css:MyStyles.css}}
更多資料請參考:官網