Answers for "acf options pages"

PHP
2

acf options page

if( function_exists('acf_add_options_page') ) {
	
	acf_add_options_page();
	
}
Posted by: Guest on September-28-2020
0

register ACF options page

if ( function_exists( 'acf_add_options_page' ) ) {

	acf_add_options_page( array(
		'page_title'	=> 'Options',
		'menu_title'	=> 'Options',
		'menu_slug' 	=> 'acf-options',
		'capability'	=> 'edit_posts',
		'redirect'		=> false,
	));

}
Posted by: Guest on April-02-2022

Browse Popular Code Answers by Language