wordpress插件介绍--Jerome’s Keywords Related Posts

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 = '

  • %date%: %title% (%commentcount%)
  • ‘,
    $dateformat = ‘d.m.y’
    )

    注:<右边空格要去掉

    参数说明:

    • $order: DATE_DESC按日期排列,降序, DATE_ASC按日期排列,升序,RANDOM随机
    • $limit_quantity:显示相关文章的数量
    • $limit_days: 设定显示文章与此文章最多相差天数
    • $format: 输出格式:
    • %date%: 文章发表时间
    • %permalink%: 文章的链接
    • %title%: 文章的题目
    • %commentcount%: 评论数目
    • $dateformat: 显示日期的格式

    强烈推荐此插件,会增加网站的interlink,利于搜索引擎收录

    16 thoughts on “wordpress插件介绍--Jerome’s Keywords Related Posts

    1. 又要麻烦了,这个插件怎么用呢?我在single.php相应位置加了:
      No related posts’;
      } else {
      echo ‘
      Related posts:’ . $relatedposts . ‘
      ‘;
      }
      }
      ?>
      可是无法显示相关文章.
      你这里贴的代码有点问题,我直接加了插件主页上的代码.难道必须还加上参数吗?我不知道怎么加,试过几次,都不行.麻烦帮忙解决一下.
      UTW倒是可以实现相似的功能,但是太大了,这个插件比较小巧.

    2. 评论里代码被截掉了,我加的是插件主页上的第一段代码.

    3. 直接贴上去,把<右边空格去掉就能用
      它是按关键词进行related posts显示的
      如果你的文章的关键词没有重叠的
      是有可能没有显示的

    4. 我一用就出现Parse error: syntax error, unexpected T_STRING, expecting ‘,’ or ‘;’ in /home/minghx65/public_html/wp-content/themes/papyrus-premium/single.php on line 31
      错误!!!

    5. 博主:

      我也和你一样装了:jeromes-keywords.zip
      但我发现你和我有同样的问题

      content后面””间是空的!,keywords根本没调出来,有没有什么方法可以解决!

    发表回复

    您的电子邮箱地址不会被公开。 必填项已用 * 标注