acf_get_raw_ui_options_page()
Retrieves a raw ACF UI options page.
No Hooks.
Returns
Array|false. The UI options page array.
Usage
acf_get_raw_ui_options_page( $id );
- $id(int|string) (required)
- The post ID.
Changelog
| Since 6.2 | Introduced. |
acf_get_raw_ui_options_page() acf get raw ui options page code ACF 6.8.8
function acf_get_raw_ui_options_page( $id ) {
return acf_get_raw_internal_post_type( $id, 'acf-ui-options-page' );
}