如何在WordPress网站所有文章页面底部添加版权信息?

如何在WordPress网站所有文章页面底部添加版权信息?

大部分站长都希望能够在WordPress文章底部添加版权信息,刺梨君查询了了网上的很多资料,还是觉得下面的方法好用,现整理如下:

1、基础用法

将以下代码加入到functinos.php即可在每篇文章的末尾输出一个转载和版权提示,这里可以推荐使用Code Snippets这个插件来管理添加到主题函数functions.php的各种代码片段:

function feed_copyright($content) {
    if(is_single() or is_feed()) {
        $content.= '<div>转载请注明来源:<a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_the_title().'</a></div>';
        $content.= '<div>本文链接地址:<a rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_permalink().'</a></div>';
        $content.= '<div>订阅本站:<a title="聚米学社" href="https://www.miclass.cn/">聚米学社</a></div>';
        $content.= "</blockquote>";
    }
    return $content;
}
add_filter ('the_content', 'feed_copyright');

2、进阶用法

观察上面的代码,只保留最基本的部分,将代码$content.=”;单引号中的内容替换为你想要的内容。

function feed_copyright($content) {
    if(is_single() or is_feed()) {
        $content.= '你希望添加的内容1';
        $content.= '你希望添加的内容2';
        $content.= "</blockquote>";
    }
    return $content;
}
add_filter ('the_content', 'feed_copyright');

比如本站每篇文章后面的版权信息,其实就是将下面两段内容添加到上面相应的位置实现的。

下载须知代码如下:

<!--文章页下载须知代码-->
  <div style="font-size:18.72px;background-color:#60CDD2;text-align: center;margin: 50px 0 0 0; padding: 5px; font-weight:normal;">下载须知</div>
  <div style="background-color:#E9FDFE;border-top-width: 0px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-color: #60cdd2;border-top-style: solid;border-left-style: dashed;border-right-style: dashed;border-bottom-style: dashed;margin: 0 0 50px 0;">
     
     <div style="margin: 0;padding:10px 10px 0 10px;font-size: 13px"><i class="fa-solid fa-hand-point-right"></i> 如果在资源下载中遇到问题,这些信息可能会帮助到你:<a href="https://www.miclass.cn/help/" style="color:#23a8f2;text-decoration:none;font-weight: bold;" target="_blank"><i class="fa-solid fa-cloud-arrow-down" style="color:#23a8f2"></i> 下载帮助</a> | <a href="https://www.miclass.cn/mima/" target="_blank" style="color: #60cdd2;text-decoration:none;font-weight: bold;"><i class="fa-solid fa-key" style="color:#60cdd2 ;"></i> 解压密码</a></div>

     <div style="margin:0;padding:10px 10px 0 10px;font-size: 13px"><i class="fa-solid fa-hand-point-right"></i> 本站资源大多存储在云盘,如发现链接失效,请 <a href="https://www.miclass.cn/contact/" target="_blank" style="color: #ff0066;text-decoration:none;font-weight: bold;">"<i class="fa-solid fa-envelope"  style="color:#ff0066"></i> 联系我们"</a>,我们会第一时间更新。</div>

     <div style="margin:0;padding:10px 10px 10px 10px;font-size:13px"><i class="fa-solid fa-hand-point-right"></i> 如果您喜欢本站,可以<a href="https://www.miclass.cn/donation/" style="color:#22ac38;text-decoration:none;font-weight: bold;font-size: 15px;" target="_blank">"<i class="fa-solid fa-sack-dollar"></i> 点击这儿"</a>或者下方<span style="font-size:15px;font-weight:bolder;color: #ff5f33;"> "赏" </span>给我一点鼓励;也可以<a href="https://www.miclass.cn/vip/" style="color:#ff0066;text-decoration:none;font-weight: bold;font-size: 15px;" target="_blank"> "<i class="fa-solid fa-user" style="font-size:15px;"></i> 点击这儿" </a>, 成为VIP会员,享受更好的下载体验。</div>
 </div>

版权声明代码如下:

<!--版权声明代码-->
    <div style="font-size:18.72px;background-color:#60CDD2;text-align: center;margin:50px 0 0 0;padding: 5px;font-weight: normal;">版权声明</div>
    <div style="background-color:#E9FDFE;border-top-width: 0px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-color: #60cdd2;border-top-style: solid;border-left-style: dashed;border-right-style: dashed;border-bottom-style: dashed;margin: 0 0 50px 0;">
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本站名称:<a style="text-decoration:none;color:#ff0066;font-weight: bold;" title="miclass.cn" href="https://www.miclass.cn">聚米学社</a></div>
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本文链接地址:<a style="text-decoration:none;font-weight: bold;" rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_permalink().'</a></div>
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 转载请注明来源:<a style="text-decoration:none;font-weight: bold;" rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_the_title().'</a></div>
        <div style="margin:0px;padding: 10px 10px 10px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本站文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行核实删除。</div>
    </div>

添加完成后,整体代码变成下面这样:

function feed_copyright($content) {
    if(is_single() or is_feed()) {
        /*$content.='';*/
        $content.='<div style="font-size:18.72px;background-color:#60CDD2;text-align: center;margin: 50px 0 0 0; padding: 5px; font-weight:normal;">下载须知</div>
     <div style="background-color:#E9FDFE;border-top-width: 0px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-color: #60cdd2;border-top-style: solid;border-left-style: dashed;border-right-style: dashed;border-bottom-style: dashed;margin: 0 0 50px 0;">
        
        <div style="margin: 0;padding:10px 10px 0 10px;font-size: 13px"><i class="fa-solid fa-hand-point-right"></i> 如果在资源下载中遇到问题,这些信息可能会帮助到你:<a href="https://www.miclass.cn/help/" style="color:#23a8f2;text-decoration:none;font-weight: bold;" target="_blank"><i class="fa-solid fa-cloud-arrow-down" style="color:#23a8f2"></i> 下载帮助</a> | <a href="https://www.miclass.cn/mima/" target="_blank" style="color: #60cdd2;text-decoration:none;font-weight: bold;"><i class="fa-solid fa-key" style="color:#60cdd2 ;"></i> 解压密码</a></div>

        <div style="margin:0;padding:10px 10px 0 10px;font-size: 13px"><i class="fa-solid fa-hand-point-right"></i> 本站资源大多存储在云盘,如发现链接失效,请 <a href="https://www.miclass.cn/contact/" target="_blank" style="color: #ff0066;text-decoration:none;font-weight: bold;">"<i class="fa-solid fa-envelope"  style="color:#ff0066"></i> 联系我们"</a>,我们会第一时间更新。</div>

        <div style="margin:0;padding:10px 10px 10px 10px;font-size:13px"><i class="fa-solid fa-hand-point-right"></i> 如果您喜欢本站,可以<a href="https://www.miclass.cn/donation/" style="color:#22ac38;text-decoration:none;font-weight: bold;font-size: 15px;" target="_blank">"<i class="fa-solid fa-sack-dollar"></i> 点击这儿"</a>或者下方<span style="font-size:15px;font-weight:bolder;color: #ff5f33;"> "赏" </span>给我一点鼓励;也可以<a href="https://www.miclass.cn/vip/" style="color:#ff0066;text-decoration:none;font-weight: bold;font-size: 15px;" target="_blank"> "<i class="fa-solid fa-user" style="font-size:15px;"></i> 点击这儿" </a>, 成为VIP会员,享受更好的下载体验。</div>
    </div>';
        $content.= ' <div style="font-size:18.72px;background-color:#60CDD2;text-align: center;margin:50px 0 0 0;padding: 5px;font-weight: normal;">版权声明</div>
    <div style="background-color:#E9FDFE;border-top-width: 0px;border-left-width: 2px;border-right-width: 2px;border-bottom-width: 2px;border-color: #60cdd2;border-top-style: solid;border-left-style: dashed;border-right-style: dashed;border-bottom-style: dashed;margin: 0 0 50px 0;">
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本站名称:<a style="text-decoration:none;color:#ff0066;font-weight: bold;" title="miclass.cn" href="https://www.miclass.cn">聚米学社</a></div>
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本文链接地址:<a style="text-decoration:none;font-weight: bold;" rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_permalink().'</a></div>
        <div style="margin:0px;padding: 10px 10px 0px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 转载请注明来源:<a style="text-decoration:none;font-weight: bold;" rel="bookmark" title="'.get_the_title().'" href="'.get_permalink().'">'.get_the_title().'</a></div>
        <div style="margin:0px;padding: 10px 10px 10px 10px;font-size: 10px;"><i class="fa-solid fa-play" style="color:black;font-size: 13px;"></i> 本站文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行核实删除。</div>
    </div>';
        
        $content.= "</blockquote>";
    }
    return $content;
}
add_filter ('the_content', 'feed_copyright');

效果如下:

下载须知
如果在资源下载中遇到问题,这些信息可能会帮助到你: 下载帮助 | 解压密码
本站资源大多存储在云盘,如发现链接失效,请 " 联系我们",我们会第一时间更新。
如果您喜欢本站,可以" 点击这儿"或者下方 "赏" 给我一点鼓励;也可以 " 点击这儿" , 成为VIP会员,享受更好的下载体验。
版权声明
本站名称:聚米学社
本文链接地址:https://www.miclass.cn/3247.html
本站文章部分内容可能来源于网络,仅供大家学习与参考,如有侵权,请联系站长进行核实删除。
0
显示验证码
没有账号? 注册  忘记密码?
聚米学社页脚