在单曲中添加以下代码。php文件
<div class="post-contents">
<?php
$args = array( \'posts_per_page\' => -1,\'orderby\'=> \'date\',\'order\'=> \'DESC\',\'post_type\' => \'post\',\'post_status\'=> \'publish\');
$myposts = get_posts( $args );
foreach ( $myposts as $post ) : setup_postdata( $post ); ?>
<div class="post-single">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<p><?php echo $post->post_content; ?></p>
</div>
<?php endforeach;
wp_reset_postdata();?>
</div>