您可以使用get_posts() 函数并为此创建自定义模板文件!通过这种方式,您可以利用函数使用的所有参数。例如,要显示id=47的类别中的所有帖子,可以执行以下操作:
<ul>
<?php
global $post;
$args = array( \'numberposts\' => 999, \'category\' => 47, \'orderby\' => \'post_date\', \'order\' => \'DESC\',);
$myposts = get_posts( $args );
foreach( $myposts as $post ) : setup_postdata($post); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>
</ul>
这将回应999篇文章的标题(每个标题都链接到文章本身),并将它们格式化为一个列表,其中包含
<ul>
,
<li>
我们用过的。当然,您必须自定义它以适合您的用例,但这是一个可行的原则。
我希望这有帮助!
干杯Ari。