Contactform7で自動挿入される p と br タグの削除
add_filter('wpcf7_autop_or_not', 'wpcf7_autop_return_false', 10);
function wpcf7_autop_return_false() {
return false;
}
簡素のパターン
add_filter('wpcf7_autop_or_not', function () {
return false;
});
add_filter('wpcf7_autop_or_not', 'wpcf7_autop_return_false', 10);
function wpcf7_autop_return_false() {
return false;
}
簡素のパターン
add_filter('wpcf7_autop_or_not', function () {
return false;
});
Category
Tag cloud
Search