给Wordpres日志添加签名档

June 13th, 2009 § 0

给Wordpress的每篇日志添加签名档,签名档里加入版权信息后,就算日志被采集,也可以看到出处。Wordpress有相关的插件可以做到,但其实加简单的几句代码,有同样的效果,且更个性化,只是对于不太懂代码的人来说有点难度,但我们可以模仿别人的例子。

操作步骤:

1、在主题下的single.php文件中找到下面这行代码:

<?php the_content(''); ?>

2、在其后面加入如下代码:

<div>转载请注明来源:<a href="<?php bloginfo(’url’); ?>"><?php bloginfo(’name’); ?></a>-<a href="<?php the_permalink() ?>">《<?php the_title(); ?>》</a></div>
<div>本文链接地址:<a href="<?php the_permalink() ?>"><?php the_permalink() ?></a></div>

3、保存single.php文件(注意要转换成UTF-8编码格式,因为有中文,否则会出现乱码)。

参考资料:

Life Studio » 《给Wordpress添加日志签名档》

[本文来自: 盆盆罐罐>> 给Wordpres日志添加签名档,转载请注明。]

Related Posts

Tagged: ,

§ Leave a Reply

What's this?

You are currently reading 给Wordpres日志添加签名档 at 盆盆罐罐.

meta