搭建网站都会在文章页面添加一些相关文章推荐,今天就为大家分享一下WordPress文章页面调用相同分类下文章方法,下面的代码是提供文章页面里面从分类下的文章列表调用方法。默认调用的是相关分类下面最新的文章内容。里面可以**设置数量以及排序的方式,默认是根据分类目录下最新发布的时间排列的。想要显示在侧边栏里,可以在对应的sidebar.php文件里进行添加,如果是显示在文章内容的下方,可以在文章页面single.php里进行添加,直接**粘贴就可以完成,简单易操作。
<?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->n**e; ?></h2>
<ul>
<?php
$posts = get_posts(‘numberposts=5&**p;category=’. $category->term_id);
foreach($posts as $post) :
?>
<li>
<a href=”https://www.wpzt.net/<?php the_per**link(); ?>”><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
</li>
<?php
endforeach; endif ; ?>
<?php
/*
end show current category articles
*/
?>
暂无评论内容