HighLab

contactform7のpタグを排除する

  • 公開日:
  • 更新日:
  • 文字数:163文字
// Contact Form 7の自動pタグ無効
add_filter('wpcf7_autop_or_not', 'wpcf7_autop_return_false');
function wpcf7_autop_return_false() {
  return false;
}