不知道什么时候开始,版权问题开始被越来越多的博主重视。因为他们不想看到自己辛辛苦苦写的高质量文章被别人 「盗走」,所以很多博主会在文章结尾处表明版权的态度。可是,每次发表文章都要手动添加这些信息,无疑是件很繁琐的事情。所以,WP 巴士推荐 2 种方法,自动为文章插入版权信息。
方法一:插入代码
进入 WP 后台-主题-编辑,找到网站模板 「single.php」 文件,在 「」 代码下加入如下代码:
<p><strong> 除非注明,博客文章均为原创,转载请标明本文地址</strong></br>
<strong> 本文地址:</strong> <a href="<?php%20the_permalink()%20?>" title="<?php the_title(); ?>"><?php the_permalink(); ?></a></p>
<strong> 本文地址:</strong> <a href="<?php%20the_permalink()%20?>" title="<?php the_title(); ?>"><?php the_permalink(); ?></a></p>
其中,代码里面的 title = < ?php the_title(); ? > 为文章标题,即鼠标停留在链接上时显示。
< ?php the_permalink(); ? > 为本文链接地址。
保存即可!效果可参见本文下方版权声明处。
方法二:使用插件
觉得修改代码太麻烦,可以使用 WordPress 插件:Add Post URL