Home › Forums › Add-ons › Options Page › Multiple Options page, not subpage › Reply To: Multiple Options page, not subpage
Hey Jack,
This is fairly simple. You can add multiple subpages by doing the following:
add_filter(‘acf/options_page/settings’,'my_options_page_settings’);
function my_options_page_settings($options)
{
$options['title'] = __(‘Partners’);
$options['pages'] = array(
(‘Partners’),
(‘Page Two’),
(‘Page Three’),
(‘Page Four’)
);
return $options;
}
You just add onto the array.
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.