복붙노트

[WORDPRESS] WordPress 편집기 Div 속성 제거

WORDPRESS

WordPress 편집기 Div 속성 제거

해결법


  1. 1.HTML 코드를 망치려면 Future.php 에이 코드를 추가하십시오.

    HTML 코드를 망치려면 Future.php 에이 코드를 추가하십시오.

    function override_tinymce_option($initArray) {
        $opts = '*[*]';
        $initArray['valid_elements'] = $opts;
        $initArray['extended_valid_elements'] = $opts;
        return $initArray;
    }
    add_filter('tiny_mce_before_init', 'override_tinymce_option');
    
  2. from https://stackoverflow.com/questions/25479560/wordpress-editor-removing-div-attributes by cc-by-sa and MIT license