来源: 互联网 日期: 2020-07-16 17:04:41
现在许多的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文件里面。
(抓润网帝国模板 www.zhuarun.com)