无插件给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添加相关日志就这么简单。这里只是在文章内页添加WordPress相关日志,关于WordPress侧边栏热门文章、随机文章请看《WordPress热门文章、随机文章、热门评论-WP-KIT-CN插件》
|