比如说,在每篇日志的后面都加上作者签名(包括作者头像),或者一些类似版权声明之类的东西,其实这些文末信息在许多网站或博客上是常见的事情。我在Smashingmagazine上看到如下面这样的一条小小技巧,原来相当简单。
首先,在日志或页面的尾部自动添加信息。将以下这段代码插入到主题functions.php文件中:
function sig_to_content($content){ $content .= '<p><img src="'. IMAGES .'/sig.png" alt="Joseph L. Casabona" /></p>'; return $content; } add_filter( "the_content", "sig_to_content" );
修改代码中标签<p>和</p>之间的内容即可。
其次,如果你希望仅仅在日志尾部添加某些信息的话,你可以将代码改为如下:
function sig_to_content($content){ if(is_single()){ $content .= '<p><img src="'. IMAGES .'/sig.png" alt="Joseph L. Casabona" /></p>'; return $content; } } add_filter( "the_content", "sig_to_content" );
OK了
来源:http://www.sayblog.me/add-automatically-infomation-to-the-foot-of-wordpress-post.html
评论 (0)