これは以外と簡単に解決できます。記事を出力させるテンプレートのphp the_content();の前に下記を追加してやるだけでOK!
<?php remove_filter ('the_content', 'wpautop'); ?> <?php the_content(); ?>
wp-includes/default-filters.phpの中の下記の記載を探してコメントアウトします。
add_filter(’the_content’, ‘wpautop’); add_filter(’the_excerpt’, ‘wpautop’);
下記の様に変更
//add_filter(’the_content’, ‘wpautop’); //add_filter(’the_excerpt’, ‘wpautop’);