Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
wp_editor は次のようなエスケープ文字を追加します:
"/
for example: <p style=\"text-align:center\">text</p> I want to make: <p style="text-align:center">text</p>
ありがとう。
WordPress サニタイズを使用する必要があります。
<?php wp_kses_post( $data ); ?>
http://codex.wordpress.org/Function_Reference/wp_kses_post
私の答えを見つけました:)
str_replace(array('\"'), '"', "<p style=\"text-align:center\">text</p>")