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.

Method of the class: acf_field{}

No Hooks.

Returns

String[].

Usage

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

Changelog

Since 6.8 Introduced.

acf_field::get_jsonld_output_types() code ACF 6.8.8

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