无插件给 WordPress 文章添加相关日志的方法非常简单,原理是通过判断关键词和标签显示相关日志,效果就
是我现在这样子。在主题目录的 single.php 适当位置添加如下代码,以 inove 主题为例,另存为 UTF8 格式,我添加在<!–
related posts START –> 这一行注释下方了。

注意:代码中描红的部分 id=」related_posts」 是调用了 inove 主题 css 中自带的样式,还比较漂亮。非 inove 主题的用户请去除代码中的描红部分,当然,你也可以自己在主题的 CSS 中添加这种样式。

<div id=」related_posts」>
<h3> 相关日志</h3>
<ul>
<?php
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$first_tag = $tags[0]->term_id;
$args=array(
『tag__in』 => array($first_tag),
『post__not_in』 => array($post->ID),
『showposts』=>10,
『caller_get_posts』=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href=」<?php the_permalink() ?>」 rel=」bookmark」
title=」<?php the_title_attribute(); ?>」><?php
the_title();?> <?php comments_number(『 『,』(1)』,'(%)』);
?></a></li>
<?php
endwhile;
}
}
wp_reset_query();
?>
</ul>
</div>

小结:有些使用 inove 主题的朋友在添加代码时出现 能够显示相关日志,但不显示样式,显得很丑陋。很多是因为在调用 id=」related_posts」 时 双引号变种了,上述代码中无误,请放心使用。若还不能显示样式,请查看你主题的 style.css 中是否存在 #related_posts 。 OK WordPress 添加相关日志就这么简单。