WordPressで出てくる余計なpタグを無効にする

余計なpタグを無効にする方法。 function.phpに以下を記述します。
remove_filter('the_content', 'wpautop'); // 記事の自動整形を無効にする
remove_filter('the_excerpt', 'wpautop'); // 抜粋の自動整形を無効にする