acf_set_options_page_title()
No Hooks.
Returns
null. Nothing (null).
Usage
acf_set_options_page_title( $title );
- $title
- .
Default:'Options'
acf_set_options_page_title() acf set options page title code ACF 6.8.8
function acf_set_options_page_title( $title = 'Options' ) {
acf_update_options_page(
'acf-options',
array(
'page_title' => $title,
'menu_title' => $title,
)
);
}