Home › Forums › ACF PRO › Options Page doesn't show up in WP admin menu › Reply To: Options Page doesn't show up in WP admin menu
The difference between ACF4 and 5 is that 5 no longer adds a default options page. To add the options page that used to be there by default (borrowing @ajhisbrill code)
f( function_exists('acf_add_options_page') ) {
// Adds ACF Pro options page that used to appear by default in the ACF4 add on
$globalOptions = acf_add_options_page(array(
'page_title' => 'Options',
'menu_title' => 'Options',
'menu_slug' => 'acf-options',
'capability' => 'edit_posts',
'redirect' => false
));
}
You may need to edit the field groups that are supposed to appear on options pages and reattach them to the correct options page. There are some changes between 4 and 5 that sometimes causes this.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.