子テーマの functions.php に下記コードの一部を追記したのならそれを削除すればOKです。
Code Snippets を使用している場合はその項目を削除すればOKです。
後は Tiny MCE Advance 等のエディタ系プラグインあたりですかね。
/**▼▼ 自動整形禁止 開始 ▼▼**/
remove_filter('the_title', 'wptexturize');
remove_filter('the_content', 'wptexturize');
remove_filter('the_excerpt', 'wptexturize');
remove_filter('comment_text', 'wptexturize');
remove_filter('widget_text', 'wptexturize');
remove_filter('the_title' , 'convert_chars');
remove_filter('the_content', 'convert_chars');
remove_filter('the_excerpt', 'convert_chars');
remove_filter('comment_text', 'convert_chars');
remove_filter('widget_text', 'convert_chars');
remove_filter('the_title' , 'wpautop');
remove_filter('the_content', 'wpautop');
remove_filter('the_excerpt', 'wpautop');
remove_filter('comment_text', 'wpautop');
remove_filter('widget_text', 'wpautop');
function override_mce_options( $init_array ) {
global $allowedposttags;
$init_array['valid_elements'] = '*[*]';
$init_array['extended_valid_elements'] = '*[*]';
$init_array['valid_children'] = '+a[' . implode( '|', array_keys( $allowedposttags ) ) . ']';
$init_array['indent'] = true;
$init_array['wpautop'] = false;
$init_array['force_p_newlines'] = false;
$init_array['wptexturize'] = false;
$init_array['convert_chars'] = false;
return $init_array;
}
add_filter( 'tiny_mce_before_init', 'override_mce_options' );
/**▲▲ 自動整形禁止 終了 ▲▲**/