Add ACF Options Page in WordPress

Add ACF Options Page in WordPress
116 Views

To create an options page, open up your current themes functions.php file and add the following code:

‘Theme General Settings’,
‘menu_title’ => ‘Theme Settings’,
‘menu_slug’ => ‘theme-general-settings’,
‘capability’ => ‘edit_posts’,
‘redirect’ => false
));
}

?>

Without passing any parameters to this function, the default options page will be added to your wp-admin sidebar.

Was this article helpful?
YesNo

Leave a comment

Your email address will not be published.