WordPressのsingle.phpで、the_content()で投稿本文を出力しようとしても何も表示されない・・・という場合の対処法のご紹介です。
the_content()で本文が表示されない場合
グローバル変数$postの中のpost_content(投稿本文)を抜き出す処理に変えます。なので、テンプレートファイルsingle.phpのthe_content()を使っていた箇所を、以下のように変更してみます。
1 2 3 4 |
<?php $my_content = wpautop($post -> post_content); echo $my_content; ?> |
参考情報
関数リファレンス/wpautop
コメント