Home › Forums › Add-ons › Options Page › Creating Options Pages from a plugin? › Reply To: Creating Options Pages from a plugin?
The page is not permanent and only appears when the settings are saved and the page is added.
To do this you must save the information into the database and then you must get this information on ‘init’ and create the other options page on every page load.
// in functions.php or some other locations that is loaded on every page load
add_action('acf/init', 'create_options_page');
function create_options_page() {
// get values from settings page
// and register acf_options page
}
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.