因为用户寻找的是相关的文章,不相关的文章是没有多大兴趣看,博客吧认为这样也能提高PVwordpress显示当前文章同分类最新文章列表: 在想要显示的地方添加以下代码: <div class="msgborder" id="PHPcode23"> <?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; ?>
- <?php $posts = get_posts('numberposts=5&category='. $category->term_id); foreach($posts as $post) : ?>
- <a href="<?php the_permalink(); ?>"><?php the_title(); ?> <?php endforeach; ?>