Mediawiki:如何插入
我想在我的 mediawiki 安装中插入一个 flattr 图像。这需要在 html 文件的标头中插入 部分。我不知道在哪里可以插入它,因为我在文件
MonoBook.php
中找不到 标签。我使用当前的 mediawiki 软件(1.16.2)和 MonoBook 风格。有人可以告诉我在哪里可以插入所需的 javascript 吗?
I'd like to insert a flattr image in my mediawiki installation. That requires to insert a <script>...</script>
section into the header of the html file. I have no clue, where I can insert this, for I can't find a <head>
-tag in the file MonoBook.php
. I use the current mediawiki software (1.16.2) and the MonoBook style. Can someone give me a clue where I can insert the required javascript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我找到了一个很好的解决方案:我使用
$wgUseSiteJs = true;
启用 JavaScript,并将 flattr js 插入MediaWiki:Common.js
中。I have found a good solution: I enable JavaScript with
$wgUseSiteJs = true;
and insert the flattr js inMediaWiki:Common.js
.如果您想使用编辑器插入
标签,唯一的方法是使用扩展...在我的例子中,我使用 WikiScript。
If you want to insert
<script>
tags using the editor, the only way to do so is to use an extension... in my case, I use WikiScript.