何らかの理由で、私が作成したテーマでは、2 つの改行 (ビジュアル エディターで Enter キーを押す) が段落タグに変換されません。すべてのプラグインを無効にしようとしましたが、それでも機能しません。ただし、デフォルトのテーマに変更しても機能します。何か案は?
<?php while ( have_posts() ) : the_post(); ?>
<div class="container">
<h2>
<?php the_title(); ?>
</h2>
</div> <!-- /container -->
<div class="container contentArea">
<?php the_content(); ?>
</div>
<?php endwhile; // end of the loop. ?>