Support

Account

Home Forums Add-ons Options Page how to show custom field option in theme page? Reply To: how to show custom field option in theme page?

  • 1. how to registe option page you mean create new .php page? or create page from wp >> page >> ad new page? where i have to put this code?

    if (function_exists(‘acf_add_options_page’)) {
    acf_add_options_page(array(
    ‘page_title’ => ‘Site Options’,
    ‘menu_title’ => ‘Site Options’,
    ‘menu_slug’ => ‘acf-options’,
    ‘position’ => ‘103.3’,
    ‘capability’ => ‘edit_posts’,
    ‘redirect’ => false,
    ));
    }