今天,我将分享一段代码,它可以在同一个类别列下快速生成wordpress文章页面和最新文章内容。只需将以下代码复制到指定位置,即可在当前类别列下显示最新文章。同时,数字可以通过numberposts的数据来控制,排序方式可以通过orderby的值来设置。
'orderby' => 'date', //按发布日期排序
'orderby' => 'modified', //按修改时间排序
'orderby' => 'ID', //按文章ID排序
'orderby' => 'comment_count', //按评论最多排序
'orderby' => 'title', //按标题排序
'orderby' => 'rand', //随机排序
'order' => 'desc', // 降序(递减,由大到小)
<?php
global $post;
$categories = get_the_category(); //函数获取分类ID好
foreach ($categories as $category){
?>
<ul>
<?php
$posts = get_posts('numberposts=80&orderby=rand&category='. $category->term_id);
//通过get_posts函数,根据分类ID来获取这个ID下的文章内容。
foreach($posts as $post){
?>
<li><a href="<?php the_permalink(); ?>" rel="external nofollow" ><?php the_title(); ?></a></li>
<?php //显示出该分类下的文章标题,以及附加上超链接。 ?>
<?php
}
?>
</ul>
<?php
}
?>