1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[WordPress] 勝手に追加される<p>タグや<br>タグを取り除く

Last updated at Posted at 2015-09-24

どういった条件で追加されるのか不明だが、

投稿のテキストエリア内には

<main>
<!-- 内容 -->
</main>

と書いたはずなのに
最終的に表示されるソースを見ると

<p>
<main></p><br>
<!-- 内容 -->
<p></main></p>

おかげでレイアウトが崩れてしまうので、以下の様な対策をした。
functions.phpに追加

remove_filter('the_content', 'wpautop'); // 記事の自動整形を無効にする
remove_filter('the_excerpt', 'wpautop'); // 抜粋の自動整形を無効にする

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?