acf_field_textarea::format_value()publicACF 3.6

This filter is applied to the $value after it is loaded from the db and before it is returned to the template

Метод класса: acf_field_textarea{}

Хуков нет.

Возвращает

$value. (mixed) the modified value

Использование

$acf_field_textarea = new acf_field_textarea();
$acf_field_textarea->format_value( $value, $post_id, $field );
$value (обязательный)
-
$post_id (обязательный)
-
$field (обязательный)
-

Список изменений

С версии 3.6 Введена.

Код acf_field_textarea::format_value() ACF 6.0.4

function format_value( $value, $post_id, $field ) {

	// bail early if no value or not for template
	if ( empty( $value ) || ! is_string( $value ) ) {

		return $value;

	}

	// new lines
	if ( $field['new_lines'] == 'wpautop' ) {

		$value = wpautop( $value );

	} elseif ( $field['new_lines'] == 'br' ) {

		$value = nl2br( $value );

	}

	// return
	return $value;
}