您需要使用wp\\u query查询数据库中的帖子,如下所示:
<?php
$blog_args = array(
\'post_type\' => \'post\',
\'posts_per_page\' => \'-1\',
\'order\' => \'DESC\'
);
$blog_query = new WP_Query($blog_args);
while ( $blog_query->have_posts() ) {
$blog_query->the_post();
echo \'<a href="\'.get_permalink().\'">\'.get_the_title().\'</a>\';
}
wp_reset_postdata();
?>
这将只显示文章标题的所有文章,您需要添加分页,并为实际显示的元素添加更多细节,但应该给您一个良好的开端