acf_field::get_jsonld_output_typespublicACF 6.8

Returns an array of JSON-LD Property output types that are supported by this field type.

Override in field type classes to declare supported ranges. Used to determine valid properties and output formats.

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

Хуков нет.

Возвращает

string[].

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

$acf_field = new acf_field();
$acf_field->get_jsonld_output_types(): array;

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

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

Код acf_field::get_jsonld_output_types() ACF 6.8.8

public function get_jsonld_output_types(): array {
	return array();
}