Support

Account

Home Forums ACF PRO Theme AND plugin integration Reply To: Theme AND plugin integration

  • You need to add the options page during init. This insures that the acf function exists before you try to create the options page.

    
    add_action('init', 'add_my_options_page');
    function add_my_options_page() {
        // code to add options page here
    }