好的,我实际上自己找到了答案,但对于其他想要做同样的事情的人来说。下面是一个解决方案。
在 Wordpress.org Codex http://codex.wordpress.org/Page_Templates#A_Page_of_Posts上找到的解决方案
命名文件pageofposts.php并在 Wordpress 仪表板中编辑页面,并将模板(在下拉列表中)设置为“帖子页面”。答对了!
<?php
/*
Template Name: Page Of Posts
*/
/* This example is for a child theme of Twenty Thirteen: 
*  You'll need to adapt it the HTML structure of your own theme.
*/
get_header(); ?>
    <div id="primary" class="content-area">
        <div id="content" class="site-content" role="main">
        <?php 
        /* The loop: the_post retrieves the content
         * of the new Page you created to list the posts,
         * e.g., an intro describing the posts shown listed on this Page..
         */
        global $post;
        $slug = get_post( $post )->post_name;
        if ( have_posts() ) :
            while ( have_posts() ) : the_post();
              // Display content of page
              get_template_part( 'content', get_post_format() ); 
              wp_reset_postdata();
            endwhile;
        endif;
        $paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
        $args = array(
            // Change these category SLUGS to suit your use. category_name is comma separated.
            'tag' => $slug, 
            'paged' => $paged
        );
        $list_of_posts = new WP_Query( $args );
        ?>
        <?php if ( $list_of_posts->have_posts() ) : ?>
            <?php /* The loop */ ?>
            <?php while ( $list_of_posts->have_posts() ) : $list_of_posts->the_post(); ?>
                <?php // Display content of posts ?>
                <?php get_template_part( 'content', get_post_format() ); ?>
            <?php endwhile; ?>
            <?php twentythirteen_paging_nav(); ?>
        <?php else : ?>
            <?php get_template_part( 'content', 'none' ); ?>
        <?php endif; ?>
        </div><!-- #content -->
    </div><!-- #primary -->
<?php get_footer(); ?>