wordpress文章页面添加版权信息的四种方法

文章目录[隐藏]

这里参考一些网友的版权声明信息,具体更改方法为:

外观>>编辑“single.php”文件,找到类似“div class="content"”的源码,在下面相应位置添加.

方法1

<p>本文链接: <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"> 
<?php the_permalink(); ?></a><br/>转载请注明转载自:<a href="">SeaRu</a></p>

方法2

本文链接:<a rel="bookmark" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>"><?php echo wp_get_shortlink(); ?></a> 
订阅本站:<a title="SeaRu" href="" rel="external nofollow">http://feed. searu.org</a></div> <br/> 
转载请注明来源:<a title="SeaRu" href="" rel="external nofollow">SeaRu</a> <a rel="bookmark" title="<?php the_title(); ?>" href="<?php the_permalink(); ?>">《<?php the_title(); ?>》</a>
<pre lang="php" line="0" escaped="true" >

方法3

本文由<?php the_author_posts_link(); ?>,转载请注明转自:<?php bloginfo('name'); ?><a href="<?php echo get_settings('home'); ?>"><?php echo get_settings('home'); ?></a>;
如果你觉得本博内容不错,欢迎 <a href= target="_blank">订阅我的博客</a>,以便第一时间了解本博更新内容;
本文链接:<a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_permalink(); ?></a>

方法4

将以下代码加入到functinos.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="wordpress建站" href="http://www.v7v3.com/f/?t=dy">http://www.v7v3.com/f/?t=dy</a></div>';
        $content.= "</blockquote>";
    }
    return $content;
}
add_filter ('the_content', 'feed_copyright');

将以上代码加入到 functinos.php即可在每篇文章的末尾输出一个转载和版权提示,当然你可以利用这种方法在文章尾部添加广告。


发布日期:

所属分类: Wordpress 综合 标签:    


没有相关文章!