• Is it possible to create option pages in SCF like in ACF? So far this was possible with

    if( function_exists('acf_add_options_page') ) {
        scf_add_options_page(array(
            'page_title' => 'Contact information',
            'menu_title' => 'contact_information',
            'menu_slug' => 'contact-info',
            'capability' => 'edit_posts',
            'redirect' => false
        ));
    }

    But the function no longer seems to exist. I have also tried scf_add_options_page. Unfortunately, I can’t find any documentation for the plugin, which I find strange. Is there really none?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Options Page function does not work’ is closed to new replies.