必ず仕込む。
functions.phpでやる
//contact form 7 改行タグ解除
add_filter('wpcf7_autop_or_not', 'wpcf7_autop_return_false');
function wpcf7_autop_return_false() {
return false;
}
wp-config.phpでやる
define ('WPCF7_AUTOP', false);
/** Sets up WordPress vars and included files. */
require_once( ABSPATH . 'wp-settings.php' ); //※これの手前に書く
コメント