ACF_Location_Comment::get_valuespublicACF 5.9.0

Returns an array of possible values for this rule type.

Method of the class: ACF_Location_Comment{}

No Hooks.

Returns

Array.

Usage

$ACF_Location_Comment = new ACF_Location_Comment();
$ACF_Location_Comment->get_values( $rule );
$rule(array) (required)
A location rule.

Changelog

Since 5.9.0 Introduced.

ACF_Location_Comment::get_values() code ACF 6.0.4

public function get_values( $rule ) {
	return array_merge(
		array(
			'all' => __( 'All', 'acf' ),
		),
		acf_get_pretty_post_types() // Todo: Change to post types that support comments.
	);
}