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 6.1.6
function wpcf7_exclude_blank( $input ) {
$output = array_filter( $input,
static function ( $i ) {
return isset( $i ) && '' !== $i;
}
);
return array_values( $output );
}