给WordPress转载时添加版权信息

给WordPress转载时添加版权信息

方法1

在single.php  找到<?php the_content(); ?>

再后面加上
<p>
<a href="http://creativecommons.org/licenses/by/3.0/deed.zh">版权声明</a>:转载时请以超链接形式标明文章原始出处和作者信息</br>本文链接:
<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_permalink(); ?></a>
</p>

——————-分割线——————-

方法2

首先复制以下代码,然后找到你的WordPress源码,把代码添加到你WordPress当前主题的 functions.php 文件中即可,

主题路径:wp-content/themes/

//WordPress 文章版权申明
add_filter ('the_content', 'fanly_copyright');
function fanly_copyright($content) {
    if(is_single() or is_feed()) {
        $content.= '<p>除非注明,否则均为<a href="'.get_bloginfo('url').'" target="_blank">'.get_bloginfo('name').'</a>原创文章,转载必须以链接形式标明本文链接</p>';
        $content.= '<p>本文链接:<a title="'.get_the_title().'" href="'.get_permalink().'" target="_blank">'.get_permalink().'</a></p>';
        return $content;
    }
}
YY