WordPress当前文章怎么展示同分类下的最新文章列表

来源:爱站网时间:2022-06-10编辑:网友分享
WordPress当前文章怎么展示同分类下的最新文章列表你知道吗?为了帮助朋友们更好的解决问题内容,爱站技术频道小编在此整理了以下相关资料,感兴趣的话千万不要错过了。

因为用户寻找的是相关的文章,不相关的文章是没有多大兴趣看,博客吧认为这样也能提高PVwordpress显示当前文章同分类最新文章列表:
在想要显示的地方添加以下代码:

代码如下:

<?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文件里添加。

希望朋友们都看懂了这篇“WordPress当前文章怎么展示同分类下的最新文章列表”内容,关注爱站技术频道网站,每天带你了解不一样的精彩技术文章。

上一篇:WordPress开发关于get_term_link参数设置

下一篇:不同版本的WordPress数据库备份

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载