wpcf7_exclude_blank()
Excludes unset or blank text values from the given array.
Хуков нет.
Возвращает
Массив
. Array without blank text values.
Использование
wpcf7_exclude_blank( $input );
- $input(массив) (обязательный)
- The array.
Код wpcf7_exclude_blank() wpcf7 exclude blank CF7 5.7.5.1
function wpcf7_exclude_blank( $input ) { $output = array_filter( $input, function ( $i ) { return isset( $i ) && '' !== $i; } ); return array_values( $output ); }