필드 이름을 찾으십시오.
[text* text-21]
당신의 필드 이름의 이름 = "텍스트-21"내 예처럼, 파일을 function.php이 코드를 추가합니다. 이름 텍스트-21입니다
add_filter('wpcf7_form_elements', 'imp_wpcf7_form_elements');
function imp_wpcf7_form_elements($content) {
$str_pos = strpos($content, 'name="text-21"');
$content = substr_replace($content, ' data-attr="custom" data-msg="Текст 1" ', $str_pos, 0);
return $content;
}
주, 그것은 "= 이름이 모든 형태, 모든 형태의 요소에 사용자 정의 속성을 추가 할 것입니다 당신이 방지하려면 텍스트-21, 그 다음 폼 요소 몇 가지 고유 한 이름을 지정 .
그런 다음 관리자에서 추가 사용자 지정 특성에 대한 옵션이 없습니다
add_filter('wpcf7_form_elements', 'imp_wpcf7_form_elements');
function imp_wpcf7_form_elements($content) {
$str_pos = strpos($content, 'name="inique-name"');
$content = substr_replace($content, ' data-attr="custom" data-msg="Текст 1" ', $str_pos, 0);
return $content;
}
에 코드를 변경 [텍스트 * inique-이름] 당신은 JS 또는 사용자 지정 코드로 수행 할 필요가 HTTPS를 :. // contactform7. co.kr/text-fields/ –