acf_is_ui_options_page_key()
Returns true if the given identifier is an ACF UI options page key.
No Hooks.
Returns
true|false.
Usage
acf_is_ui_options_page_key( $id );
- $id(string) (required)
- The identifier.
Changelog
| Since 6.2 | Introduced. |
acf_is_ui_options_page_key() acf is ui options page key code ACF 6.8.8
function acf_is_ui_options_page_key( $id ) {
return acf_is_internal_post_type_key( $id, 'acf-ui-options-page' );
}