目前版本的Mirages(1.7.2)首页大图内文字后台设置只能显示一行,辣么问题来了怎么显示俩呢,要改源码的散了散了
首先备份模板的文件避免修改后出现错误做好后路
使用代码编辑器打开header.php是Sublime Text的话直接Ctrl+F打开搜索(如果没有改快捷键)
搜索blog-title
定位到150行左右然后会找到这么一行代码
<h1 class="blog-title" style="<?php if (Utils::hasValue($this->fields->mastheadTitleColor)) echo "color: ".$this->fields->mastheadTitleColor.";" ?>" itemprop="name"><?=Mirages::$options->blogIntro?></h1>
p标签和h1标签
接下来在</h1>
后回车或者直接加入<p></p>
或<h1></h1>
<p></p>
的效果
<p>亦可赛艇</p>
<h1></h1>
的效果
<h1>亦可赛艇</h1>
引入一言
我的一言的代码来自Typecho论坛的《博客随机显示一句话(使用一言)》
引用代码如下:
<p id="yiyan" class="lead"><?php $this->options->description() ?></p>
<script>
document.getElementById("yiyan").innerText="<?php
preg_match("/href=\"(.*)\";/", file_get_contents("http://api.hitokoto.us/rand"), $url);
preg_match("/<h1 id=\"hcon\">(.*)<\/h1>/", file_get_contents($url[1]), $res);
echo $res[1];
?>";
</script>
接下来按照第一步的方法插入,插入后应该是这样的:
Use "CC BY-NC-SA 3.0 CN" for licensing
@(太开心)
很会玩,很会折腾@(滑稽)