Support

Account

Home Forums Add-ons Options Page Options Page WP Admin Menu Order Reply To: Options Page WP Admin Menu Order

  • Hi @john-marcello

    You should be able to use the position option in the acf_add_options_page() function. This page should give you more idea about it: https://www.advancedcustomfields.com/resources/acf_add_options_page/. So it should be like this:

    acf_add_options_page(array(
        'page_title'=>'Theme Options',
        'menu_title'=>'Theme Options',
        'menu_slug'=>'theme-options',
        'capability'=>'edit_posts',
        'redirect'=>true,
        'position' => '63.3' // use decimal instead of integer to avoid conflict
    ));

    I hope this helps 🙂