很多用户在使用wordpress制作网站的时候,会在文章页面的底部使用相关文章推荐,下面的代码是提供文章页面里面从分类下的文章列表调用方法。默认调用的是相关分类下面最新的文章内容。里面可以自由设置数量以及排序的方式,默认是根据分类目录下最新发布的时间排列的。
如果是想要显示在侧边栏里,可以在对应的sidebar.php文件里进行添加,如果是显示在文章内容的下方,可以在文章页面single.php里进行添加,直接复制粘贴就可以完成,简单易操作。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<?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 */ ?> |