PHPに慣れていますか?テンプレート ディレクトリを見つけて、single.php を編集 (または作成)get_template_part
し、正しい single.php テンプレートを表示するために使用する必要があります。
<?php get_header(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<?php if ( is_user_logged_in() ) :
<?php get_template_part( 'single' ); ?>
<?php else: ?>
<?php get_template_part( 'single', 'guest' ); ?>
<?php endif; ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
PS私はhttps://github.com/Automattic/_s/blob/master/single.phpからそのsingle.phpページをコピーしました