File: /home/zeusxp5/zenoxpressalongside.net/en/wp-content/themes/zxldfw-tcompanyllcMain/theme-options.php
<?php
//Web.com ACF Theme Options Page
//Version: 1.2
if( function_exists( 'acf_add_options_page' ) ) {
acf_add_options_page( array(
'page_title' => 'Theme Options',
'menu_title' => 'Theme Options',
'menu_slug' => 'theme-options',
'capability' => 'edit_posts',
'redirect' => false,
'icon_url' => false,
) );
acf_add_options_page( array(
'page_title' => 'CTA Area',
'menu_title' => 'CTA Area',
'menu_slug' => 'cta-area',
'capability' => 'edit_posts',
'redirect' => false,
'icon_url' => false,
) );
acf_add_options_page( array(
'page_title' => 'Portfolio Logos',
'menu_title' => 'Portfolio Logos',
'menu_slug' => 'portfolio-logos',
'capability' => 'edit_posts',
'redirect' => false,
'icon_url' => 'dashicons-screenoptions',
) );
//=-=-=-=-=-=- Output field based on it being an options page -=-=-=-=-=-=//
// get_field( 'field_name', 'option' );
//=-=-=-=-=-=- Current used option field names -=-=-=-=-=-=//
// company_name
// toll_free
// phone_1
// email
// address
// hours
//=-=-=-=-=-=- Repeater Sub fields -=-=-=-=-=-=//
// social_media_links - repeater
// icon
// url
}