wordpress插件介绍--Jerome’s Keywords Related Posts
作者网站:Jerome’s Keywords Related Posts
也可以这里下载
跟据Jerome’s Keywords设置的关键词,显示与本文章相关的文章
使blog的文章更具有相关性
这样可以方便读者阅读站内的相关主题,也将增加读者浏览自己所写文章的机会
激活此插件需要有Jerome’s Keywords插件的支持
关于Jerome’s Keywords用法文章,看这里
一般是将以下代码加入到single.php
< ?php
if( class_exists('JeromesKeywords') and function_exists('jkeywords_related_posts') ) {
$relatedposts = jkeywords_related_posts();
if (!$relatedposts) {
echo '< p>无相关文章< /p>';
} else {
echo '
< div class=”related-posts”>< h3>相关文章:< /h3>< ul>’ . $relatedposts . ‘< /ul>
< /div> ‘;
}
}
?>函数体function jkeywords_related_posts(
$order = 'DATE_DESC',
$limit_quantity = 5,
$limit_days = 365,
$format = '
‘,
$dateformat = ‘d.m.y’
)
注:<右边空格要去掉
参数说明:
- $order: DATE_DESC按日期排列,降序, DATE_ASC按日期排列,升序,RANDOM随机
- $limit_quantity:显示相关文章的数量
- $limit_days: 设定显示文章与此文章最多相差天数
- $format: 输出格式:
- %date%: 文章发表时间
- %permalink%: 文章的链接
- %title%: 文章的题目
- %commentcount%: 评论数目
- $dateformat: 显示日期的格式
强烈推荐此插件,会增加网站的interlink,利于搜索引擎收录