acf_get_ui_options_page()ACF 6.2

Get an ACF UI options page as an array

No Hooks.

Returns

Array|false. The UI options page array.

Usage

acf_get_ui_options_page( $id );
$id(int|string) (required)
The post ID being queried.

Changelog

Since 6.2 Introduced.

acf_get_ui_options_page() code ACF 6.8.8

function acf_get_ui_options_page( $id ) {
	return acf_get_internal_post_type( $id, 'acf-ui-options-page' );
}