フォーラムより記事抜粋
(参照元:http://ja.forums.wordpress.org/topic/8073)
1.
functions.phpに下記コード追加。
------
function rm_wpautop($content) {
global $post;
// Get the keys and values of the custom fields:
if(preg_match('||siu',$content)){
remove_filter('the_content', 'wpautop');
} else {
add_filter('the_content', 'wpautop');
}
return $content;
}
// Hook into the Plugin API
add_filter('the_content', 'rm_wpautop', 9);
------
2.
テキストエリアのどこかに
<!--handmade-->
と書いておくと、pタグが入らない。
コメントする