wordpress的相关文章插件有很多,直接在后台搜索就能发现不少,不过插件的安装是必会造成网站速度的下降,YARPP插件(YARPP全称:yet another related posts)评论不错,不过我这博客还是打算用代码来实现相关功能。
wordpress相关文章核心代码
<?php
$post_tags=wp_get_post_tags($post->ID); //如果存在tag标签,列出tag相关文章
$pos=1;
if($post_tags) {
foreach($post_tags as $tag) $tag_list[] .= $tag->term_id;
$args = array(
‘tag__in’ => $tag_list,
‘category__not_in’ => array(NULL), // 不包括的分类ID,可以把NULL换成分类ID
‘post__not_in’ => array($post->ID),
‘showposts’ => 0, // 显示相关文章数量
‘caller_get_posts’ => 1,
‘orderby’ => ‘rand’
);
query_posts($args);
if(have_posts()):while (have_posts()&&$pos<=10) : the_post(); update_post_caches($posts); ?>
<li><span><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php if(get_the_title())the_title();else the_time(‘Y-m-d’); ?></a></span> <span><?php the_time(‘Y-m-d’) ?> <?php the_category(‘/’,”) ?></span></li>
<?php $pos++;endwhile;wp_reset_query();endif; ?>
<?php } //end of rand by tags ?>
<?php if($pos<=10): //如果tag相关文章少于10篇,那么继续以分类作为相关因素列出相关文章
$cats = wp_get_post_categories($post->ID);
if($cats){
$cat = get_category( $cats[0] );
$first_cat = $cat->cat_ID;
$args = array(
‘category__in’ => array($first_cat),
‘post__not_in’ => array($post->ID),
‘showposts’ => 0,
‘caller_get_posts’ => 1,
‘orderby’ => ‘rand’
);
query_posts($args);
if(have_posts()): while (have_posts()&&$pos<=10) : the_post(); update_post_caches($posts); ?>
<li><span><a href=”<?php the_permalink(); ?>” rel=”bookmark” title=”<?php the_title_attribute();?>”><?php if(get_the_title())the_title();else the_time(‘Y-m-d’); ?></a></span> <span><?php the_time(‘Y-m-d’);if($options[‘tags’]):the_tags(”, ‘/’, ”);endif; ?></span></li>
<?php $pos++;endwhile;wp_reset_query();endif; ?>
<?php } endif; //end of rand by category ?>
<?php if($pos<=10){ //如果上面两种相关都还不够10篇文章,再随机挑几篇凑成10篇 ?>
<?php query_posts(‘showposts=10&orderby=rand’);while(have_posts()&&$pos<=10):the_post(); ?>
<li><span><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php if(get_the_title())the_title();else the_time(‘Y-m-d’) ?></a></span> <span>[ <?php the_category(‘/’,”); ?>]</span></li>
<?php $pos++;endwhile;wp_reset_query();?>
<?php } ?>
代码非常好用,而且是带随机功能的,对于网站的更新以及内部链接建设都很不错,推荐使用,效果可见本博客!
文档信息
- 版权声明:自由转载-非商用-非衍生-保持署名 | Creative Commons BY-NC-ND 3.0
- 原文网址: https://sunweiwei.com/700/
- 最后修改时间: 2012年07月14日 17:09:23
14 7 月, 2012 at 下午 5:23
测试一下评论
16 7 月, 2012 at 下午 2:55
以后可以用的倒,现在暂时还不行
16 7 月, 2015 at 下午 1:25
怎么去掉重复的文章呢