说明
handsome
主题默认使用的是 https://v1.hitokoto.cn 一言接口
博主感觉不是太满意,于是想换成自己的“一言”服务接口
首先需要自己搭建一个“一言”服务接口,搭建方法可以看这里:https://suntl.com/669.html
搭建好了后就可以按下面的方法替换成自己的接口即可;
修改主题“一言”接口
修改路径位于网站根目录下/usr/themes/handsome/index.php
修改index.php
文件即可;
原始代码为:
<!--/公告位置-->
<?php endif; ?>
<header class="bg-light lter b-b wrapper-md">
<h1 class="m-n font-thin h3 text-black l-h"><?php $this->options->title(); ?></h1>
<small class="text-muted letterspacing indexWords"><?php
if (@!in_array('hitokoto',$this->options->featuresetup)) {
$this->options->Indexwords();
}else{
echo '加载中……';
echo '<script>
$.ajax({
type: \'Get\',
url: \'https://v1.hitokoto.cn/\',
success: function(data) {
var hitokoto = data.hitokoto;
$(\'.indexWords\').text(hitokoto);
}
});
</script>';
}
?></small>
</header>
<div class="wrapper-md" id="post-panel">
<!--首页输出文章-->
方法一:使用JS调用
<!--/公告位置-->
<?php endif; ?>
<header class="bg-light lter b-b wrapper-md">
<h1 class="m-n font-thin h3 text-black l-h"><?php $this->options->title(); ?></h1>
<small class="text-muted letterspacing indexWords"><?php
if (@!in_array('hitokoto',$this->options->featuresetup)) {
$this->options->Indexwords();
}else{
echo '加载中……';
echo '<script>
$.post("https://suntl.com/other/hitokoto/", function(hitokoto) {
$(".indexWords").html(hitokoto);
});
</script>';
}
?></small>
</header>
<div class="wrapper-md" id="post-panel">
<!--首页输出文章-->
方法二:使用PHP调用
<!--/公告位置-->
<?php endif; ?>
<header class="bg-light lter b-b wrapper-md">
<h1 class="m-n font-thin h3 text-black l-h"><?php $this->options->title(); ?></h1>
<?php $hitokoto = file_get_contents('https://suntl.com/other/hitokoto/'); ?>
<?php echo $hitokoto; ?>
</header>
<div class="wrapper-md" id="post-panel">
<!--首页输出文章-->
注意
修改代码中的链接地址需要修改成自己的接口链接;
版权声明:本文为原创文章,版权归 suntl.com 所有,转载请注明出处!
本文链接:https://suntl.com/670.html
友情提示:如果博客出现404或链接失效,请留言或者联系博主修复!
好哒,感谢大佬~
很好用 nice
可以转到我 1IP 的博客上吗,这两篇一言的
可以,保留链接即可
感谢~
另外 想问一下你用的什么主机,我这经常抽风打不开。挂代理没问题。是不是IP被强过
IP没墙过啊,是不是晚上高峰的时候打不开呢?你是什么宽带?
天津联通,全天候抽风。
应该是我宽带有限制,不知道什么规则。少数几个博客打开有问题,但是你的博客最严重,大部分时间打不开。。。
我经常测试都没问题啊,全国都是秒开,可能个别地区DNS有问题吧