Wordpressで、勝手にbrタグなどを挿入されてしまい、意図通りの見た目で出力できなかった。
テーマディレクトリのトップレベルにあるfunctions.phpに以下の2行を足すとうまくいった。
remove_filter('the_content', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
Wordpressで、勝手にbrタグなどを挿入されてしまい、意図通りの見た目で出力できなかった。
テーマディレクトリのトップレベルにあるfunctions.phpに以下の2行を足すとうまくいった。
remove_filter('the_content', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
Register as a new user and use Qiita more conveniently
Go to list of users who liked