致力于为用户提供真实的
主机测评数据及优惠信息

WordPress显示当前文章同分类下的文章列表

因为用户寻找的是相关的文章,不相关的文章是没有多大兴趣看,博客吧认为这样也能提高PV
wordpress显示当前文章同分类最新文章列表: 

在想要显示的地方添加以下代码: 

复制代码

代码如下:

<?php 
/* 
single page?show current category articles 
*/ 
?> 
<?php 
if ( is_single() ) : 
global $post; 
$categories = get_the_category(); 
foreach ($categories as $category) : 
?> 
<li class="widget widget_recent_entries" id="<?php $category->term_id;?>-posts"> 
<h2 class="widgettitle"><?php echo $category->name; ?></h2> 
<ul> 
<?php 
$posts = get_posts('numberposts=5&category='. $category->term_id); 
foreach($posts as $post) : 
?> 
<li> 
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> 
</li> 
<?php endforeach; ?> 
</ul> 
</li> 
<?php 
endforeach; endif ; ?> 
<?php 
/* 
end show current category articles 
*/ 
?> 


以上代码是显示当前文章页面显示该文章所在的分类的最新文章:如果是显示在侧栏,则在sidebar.php文件里添加,如果是显示在文章下面,请在single.php文件里添加。

赞(0) 打赏
未经允许不得转载:爱主机 » WordPress显示当前文章同分类下的文章列表
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址