修改版本: B2PRo_3.3.9
方法:优点:适合新老站全站美化,一次操作所以文章生效;
缺点:需要备份,B2主题更新会被覆盖。
第一步找到:b2/Modules/Templates/single.php 找到640行添加如下代码
修改前
修改后
版本一
// 声明模块 public static function copyright_notice(){ echo ' <div> <br /> <fieldset style="border: 1px dashed #ff5c00; padding: 10px; border-radius: 5px; line-height: 2em; color: #6d6d6d;"><legend style="color: #ffffff; width: 30%; text-align: center; background-color: #ff5c00; border-radius: 5px;" align="center"><span style="font-family: 黑体;">版权免责声明</span></legend> <p style="text-align: center;"><span style="font-family: 黑体;"><strong>本资源仅用于个人学习测试使用,禁止用于任何商业环境,请于下载后24小时内删除下载资源!</strong></span></p> <ol> <li><span style="font-family: 黑体; font-size: 10pt;">本站资源来源于互联网收集/个人购买,如有侵犯到您的权益,请查看<a href="https://www.ibian.online/copyright" target="_blank" rel="noopener noreferrer"><span style="color: #ff6600;">【版权声明】</span></a></span></li> <li><span style="font-family: 黑体; font-size: 10pt;">本站提供的资源部分来自互联网搜索,站内资源为网友个人学习或测试研究使用,未经原版权作者许可,禁止用于任何商业环境!请在下载24小时内删除!为尊重作者版权,请购买原版作品,支持你喜欢的作者,谢谢!</span></li> </ol> </fieldset> </div>';}
第二步查看single页面的前几行找到
class Single{ public function init(){
添加如下代码
部分存在重复,添加时候注意去除
add_action('b2_single_post_content_before',array($this,'content_audio'),5); add_action('b2_single_article_after',array($this,'post_download'),4); add_action('b2_single_article_after',array($this,'copyright_notice'),5); add_action('b2_single_article_after',array($this,'post_ds'),6); add_action('b2_single_article_after',array($this,'content_footer'),7); add_action('b2_single_article_after',array($this,'list_tags'),8);
备份好源文件,测试无误后,替换生成环境。
版本二
版本: B2PRO 3.5.6
方法:优点:适合新老站全站美化,一次操作所以文章生效;
缺点:需要备份,B2主题更新会被覆盖。
第一步找到:b2/Modules/Templates/single.php 找到640行添加如下代码
修改位置如上,进行查找
// 声明模块(增加版权声明)
public static function copyright_notice(){
echo '
<div class="ibian-bqts">
<div class="ibian-bqts1">
<span class="iconfont icon-xiaolaba"></span>
<span>温馨提示:</span>
</div>
<div class="ibian-bqts2">
<p>1.本站部分内容均收集于网络!若内容若侵犯到您的权益,请联系站长处理!<a href="https://www.ibian.online/copyright" target="_blank" rel="noopener noreferrer"><span style="color: #ff6600;">【版权声明】</span></a></p>
<p>2.如果您喜欢我们,可开通终身会员,享受全站资源免费下载!</p>
<p> 3.本站部分内容只做学习和交流使用。 版权归原作者所有。</p>
</div>
</div>
';}
第二步查看single页面的前几行找到
class Single{
public function init(){
增加如下
add_action('b2_single_article_after',array($this,'copyright_notice'),5);
第三步:
打开子主题文件中的 b2child/style.css
,在style.css
中添加以下代码 根据自己需要修改
/*再css头部添加*/
/*下面是您自己DIY的css样式代码*/
@font-face {
font-family: 'iconfont'; /* project id 3194738 */
src: url('');
src: url('?#iefix') format('embedded-opentype'),
url('//at.alicdn.com/t/font_3194738_r5x8dwlinz.woff2') format('woff2'),
url('//at.alicdn.com/t/font_3194738_r5x8dwlinz.woff') format('woff'),
url('//at.alicdn.com/t/font_3194738_r5x8dwlinz.ttf') format('truetype'),
url('#iconfont') format('svg');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-xiaolaba:before {
content: "e628";
}
/*版权提示样式*/
.ibian-bqts {
background-color: rgb(245, 245, 245);
border-radius: 12px;
padding: 15px;
color: #949ab1;
line-height:45px;
}
.ibian-bqts1 {
display: flex;
margin-bottom: 10px;
font-size: 18px;
}
.ibian-bqts2 {
font-size: 14px;
padding-left: 28px;
}
.icon-xiaolaba {
color: #fe5f84;
font-size: 25px;
}
@media screen and (max-width: 768px){
.ibian-bqts2 p {
margin-bottom: 0px;
font-size: 12px;
}
.ibian-bqts1{
margin-bottom: 0px;
}
}
刷新缓存后测试。
THE END
- 最新
- 最热
只看作者