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

前端之家收集整理的这篇文章主要介绍了WordPress显示当前文章同分类下的文章列表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

因为用户寻找的是相关的文章,不相关的文章是没有多大兴趣看,博客吧认为这样也能提高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; ?>
<?php endforeach; endif ; ?> <?php / end show current category articles / ?>

原文链接:https://www.f2er.com/wordpress/15440.html

猜你在找的wordpress相关文章