Support

Account

Home Forums Backend Issues (wp-admin) No options pages exist Reply To: No options pages exist

  • When you create options pages in a plugin you need to make sure that acf is initialized

    
    add_action('acf/init', 'my_function_name');
    function my_function_name(
      // add options pages here
    )