acf_untrash_ui_options_page()
Restores an ACF UI options page from the trash.
No Hooks.
Returns
true|false. True if the options page was untrashed.
Usage
acf_untrash_ui_options_page( $id );
- $id(int|string)
- The UI options page ID, key, or name.
Changelog
| Since 6.2 | Introduced. |
acf_untrash_ui_options_page() acf untrash ui options page code ACF 6.8.8
function acf_untrash_ui_options_page( $id = 0 ) {
return acf_untrash_internal_post_type( $id, 'acf-ui-options-page' );
}