ページ内目次

TinyMCEエディタを使ってて、spanタグが消されて困っちゃう人

ビジュアルモードとテキストモードを切り替えたりしたときに、spanタグが消されてしまうってのはWordPressでよくある話で…

よくあるってのは困りものなんですけど

TinyMCE を使っている場合は、tiny_mce_before_initフィルターを使ってあっさりすっきり解決できます。

以下のコードを function.php にぶちこみます

function my_tiny_mce_before_init( $init_array ) {
    $init_array['valid_elements']          = '*[*]';
    $init_array['extended_valid_elements'] = '*[*]';

    return $init_array;
}
add_filter( 'tiny_mce_before_init' , 'my_tiny_mce_before_init' );

これだけす

This website stores cookies on your computer. These cookies are used to provide a more personalized experience and to track your whereabouts around our website in compliance with the European General Data Protection Regulation. If you decide to to opt-out of any future tracking, a cookie will be setup in your browser to remember this choice for one year.

Accept or Deny

↑上へまいりま〜す