__('Page Sidebar','business-standard'),
'before_widget' => '
',
'after_widget' => '',
'before_title' => '',
'after_title' => '
',
));
register_sidebar(array(
'name' => __('Blog Sidebar','business-standard'),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '
',
));
register_sidebar(array(
'name' => __('Footer Sidebar','business-standard'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
}
add_action( 'widgets_init', 'business_standard_widgets_init' );
function business_standard_theme_setup() {
/*
* Makes available for translation.
*
*/
add_editor_style();
// Adds RSS feed links to for posts and comments.
add_theme_support( 'automatic-feed-links' );
add_theme_support('post-thumbnails');
/**
* Enable support for Post Formats
*/
set_post_thumbnail_size( 850, 400, true );
add_image_size( 'business_standard_standard_img',850,400,true); //standard size
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
'Header' => __( 'Main Navigation', 'business-standard' ),
));
}
add_action( 'after_setup_theme', 'business_standard_theme_setup' );
//---------------------------------------------------------------------
//---------------------------------------------------------------------
/**
* Include the TGM_Plugin_Activation class.
*/
require_once dirname( __FILE__ ) . '/class-tgm-plugin-activation.php';
add_action( 'tgmpa_register', 'my_theme_register_required_plugins' );
/**
* Register the required plugins for this theme.
*
* This function is hooked into tgmpa_init, which is fired within the
* TGM_Plugin_Activation class constructor.
*/
function my_theme_register_required_plugins() {
$plugins = array(
array(
'name' => 'Contact Form 7', // The plugin name
'slug' => 'contact-form-7', // The plugin slug (typically the folder name)
'version' => '4.0',
'required' => false, // If false, the plugin is only 'recommended' instead of required
),
);
$config = array(
'default_path' => '', // Default absolute path to pre-packaged plugins.
'menu' => 'tgmpa-install-plugins', // Menu slug.
'has_notices' => true, // Show admin notices or not.
'dismissable' => true, // If false, a user cannot dismiss the nag message.
'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag.
'is_automatic' => false, // Automatically activate plugins after installation or not.
'message' => '', // Message to output right before the plugins table.
'strings' => array(
'page_title' => __( 'Install Required Plugins', 'tgmpa' ),
'menu_title' => __( 'Install Plugins', 'tgmpa' ),
'installing' => __( 'Installing Plugin: %s', 'tgmpa' ), // %s = plugin name.
'oops' => __( 'Something went wrong with the plugin API.', 'tgmpa' ),
'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'tgmpa' ), // %1$s = plugin name(s).
'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'tgmpa' ), // %1$s = plugin name(s).
'install_link' => _n_noop( 'Begin installing plugin', 'tgmpa' ),
'activate_link' => _n_noop( 'Begin activating plugin', 'tgmpa' ),
'return' => __( 'Return to Required Plugins Installer', 'tgmpa' ),
'plugin_activated' => __( 'Plugin activated successfully.', 'tgmpa' ),
'complete' => __( 'All plugins installed and activated successfully. %s', 'tgmpa' ), // %s = dashboard link.
'nag_type' => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'.
)
);
tgmpa( $plugins, $config );
}
include_once( dirname( __FILE__ ) . '/includes/kirki/kirki.php' );
function mytheme_kirki_configuration() {
return array( 'url_path' => get_stylesheet_directory_uri() . '/includes/kirki/' );
}
add_filter( 'kirki/config', 'mytheme_kirki_configuration' );
Kirki::add_config( 'my_theme', array(
'capability' => 'edit_theme_options',
'option_type' => 'theme_mod',
'option_name' => 'my_theme',
) );
Kirki::add_panel( 'panel_id', array(
'priority' => 1,
'title' => __( 'My Title', 'business-standard' ),
'description' => __( 'My Description', 'business-standard' ),
) );
Kirki::add_section( 'header_section', array(
'title' => __( 'Header','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 1,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'logo_alt',
'label' => __( 'Logo Alt Text', 'kirki' ),
'description' => __( 'Please write alternate text for your logo.', 'kirki' ),
'section' => 'header_section',
'default' => '',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'logo_text',
'label' => __( 'Text Logo', 'kirki' ),
'description' => __( 'Please write text for your logo.', 'kirki' ),
'section' => 'header_section',
'default' => '',
'priority' => 4,
) );
Kirki::add_section( 'heading_banner', array(
'title' => __( 'Banner','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 1,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'header_banner',
'label' => __( 'Header Banner', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'heading_banner',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'banner_heading',
'label' => __( 'Banner Heading', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'heading_banner',
'default' => 'Welcome To Our Studio!',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'banner_content',
'label' => __( 'Banner Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'heading_banner',
'default' => 'ITS NICE TO MEET YOU',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'button_text',
'label' => __( 'Button Text', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'heading_banner',
'default' => 'TELL ME MORE',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'href_link',
'label' => __( 'Href Link', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'heading_banner',
'default' => '#',
'priority' => 4,
) );
Kirki::add_section( 'banners_section', array(
'title' => __( 'Banners For Pages','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 1,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'about_banner',
'label' => __( 'Banner Image For About Us', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'banners_section',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'blog_banner',
'label' => __( 'Banner Image For Blog', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'banners_section',
'default' => '',
'priority' => 2,
) );
Kirki::add_section( 'call_action', array(
'title' => __( 'Call To Action','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 1,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'action_heading',
'label' => __( 'Heading', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => 'Create Responsive UI Wordpress Themes With Us.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'color',
'setting' => 'heading_color',
'label' => __( 'Heading Color', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => '#FFFFFF',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'learn_button_text',
'label' => __( 'Learn Button Text', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => 'Learn More',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'color',
'setting' => 'learn_text_color',
'label' => __( 'Learn Text Color', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => '#000000',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'color',
'setting' => 'learn_button_color',
'label' => __( 'Learn Button Color', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => '#E6E6E6',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'learn_href_link',
'label' => __( 'learn_href_link', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'call_action',
'default' => '#',
'priority' => 4,
) );
Kirki::add_section( 'social_icons', array(
'title' => __( 'Social Icons','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 1,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'facebook',
'label' => __( 'Facebook', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'social_icons',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'twitter',
'label' => __( 'Twitter', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'social_icons',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'linkedin',
'label' => __( 'Linkedin', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'social_icons',
'default' => '#',
'priority' => 4,
) );
Kirki::add_section( 'service_section', array(
'title' => __( 'Services','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_heading',
'label' => __( 'Services Heading', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'SERVICES',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'service_content',
'label' => __( 'Services Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Lorem ipsum dolor sit amet consectetur.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'color',
'setting' => 'icon_color',
'label' => __( 'Icon Color', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => '#FFFFFF',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'select',
'setting' => 'icon_type1',
'label' => 'Icon Type 1',
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'fa-shopping-cart',
'priority' => 4,
'choices' => array(
'fa-shopping-cart' => __('fa-shopping-cart', 'business-standard'),
'fa-cart-plus' => __('fa-cart-plus', 'business-standard'),
'fa-cart-arrow-down' => __('fa-cart-arrow-down', 'business-standard'),
'fa-heart' => __('fa-heart', 'business-standard'),
'fa-plus-square' => __('fa-plus-square', 'business-standard'),
'fa-cog' => __('fa-cog', 'business-standard'),
'fa-circle' => __('fa-circle', 'business-standard'),
'fa-hand-o-right' => __('fa-hand-o-right', 'business-standard'),
'fa-chevron-down' => __('fa-chevron-down', 'business-standard'),
'fa-files-o' => __('fa-files-o', 'business-standard'),
),
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_heading1',
'label' => __( 'Services Heading 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'E-Commerce',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'service_content1',
'label' => __( 'Services Content 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_hyper1',
'label' => __( 'Href Link1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'select',
'setting' => 'icon_type2',
'label' => 'Icon Type 2',
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'fa-laptop',
'priority' => 4,
'choices' => array(
'fa-laptop' => __('fa-laptop', 'business-standard'),
'fa-cart-plus' => __('fa-cart-plus', 'business-standard'),
'fa-cart-arrow-down' => __('fa-cart-arrow-down', 'business-standard'),
'fa-heart' => __('fa-heart', 'business-standard'),
'fa-plus-square' => __('fa-plus-square', 'business-standard'),
'fa-cog' => __('fa-cog', 'business-standard'),
'fa-circle' => __('fa-circle', 'business-standard'),
'fa-hand-o-right' => __('fa-hand-o-right', 'business-standard'),
'fa-chevron-down' => __('fa-chevron-down', 'business-standard'),
'fa-files-o' => __('fa-files-o', 'business-standard'),
),
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_heading2',
'label' => __( 'Services Heading 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Responsive Design',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'service_content2',
'label' => __( 'Services Content 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_hyper2',
'label' => __( 'Href Link2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'select',
'setting' => 'icon_type3',
'label' => 'Icon Type 3',
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'fa-lock',
'priority' => 4,
'choices' => array(
'fa-lock' => __('fa-lock', 'business-standard'),
'fa-cart-plus' => __('fa-cart-plus', 'business-standard'),
'fa-cart-arrow-down' => __('fa-cart-arrow-down', 'business-standard'),
'fa-heart' => __('fa-heart', 'business-standard'),
'fa-plus-square' => __('fa-plus-square', 'business-standard'),
'fa-cog' => __('fa-cog', 'business-standard'),
'fa-circle' => __('fa-circle', 'business-standard'),
'fa-hand-o-right' => __('fa-hand-o-right', 'business-standard'),
'fa-chevron-down' => __('fa-chevron-down', 'business-standard'),
'fa-files-o' => __('fa-files-o', 'business-standard'),
),
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_heading3',
'label' => __( 'Services Heading 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Web Security',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'service_content3',
'label' => __( 'Services Content 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minima maxime quam architecto quo inventore harum ex magni, dicta impedit.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'service_hyper3',
'label' => __( 'Href Link3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'service_section',
'default' => '#',
'priority' => 4,
) );
Kirki::add_section( 'about_section', array(
'title' => __( 'About','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'about_heading',
'label' => __( 'About Heading', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => 'ABOUT',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'about_content',
'label' => __( 'About Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => 'Lorem ipsum dolor sit amet consectetur.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'about_text',
'label' => __( 'About Text', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => 'WELCOME MESSAGE',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'about_main_content',
'label' => __( 'About Main Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'about_background',
'label' => __( 'Background Image', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'about_image',
'label' => __( 'About Image', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'about_section',
'default' => '',
'priority' => 2,
) );
Kirki::add_section( 'footer_section', array(
'title' => __( 'Footer','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 3,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'copyright',
'label' => __( 'Copyright Text', 'kirki' ),
'description' => __( 'Please enter text for your copyright section.', 'kirki' ),
'section' => 'footer_section',
'default' => __( 'Copyright by wordpress.org. Developed by Vivacity InfoTech Pvt. Ltd.', 'kirki' ),
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'checkbox',
'setting' => 'social_footer',
'label' => __( 'Social Icon On Footer', 'kirki' ),
'description' => __( '.', 'kirki' ),
'section' => 'footer_section',
'default' => '1',
'priority' => 2,
) );
Kirki::add_section( 'general', array(
'title' => __( 'General','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'color',
'setting' => 'primary_color',
'label' => __( 'Primary Color', 'kirki' ),
'description' => '',
'section' => 'general',
'default' => '#3C9DFF',
'priority' => 1,
) );
Kirki::add_field( '', array(
'type' => 'select',
'setting' => 'font_type',
'label' => 'Font Type',
'description' => __( '', 'kirki' ),
'section' => 'general',
'default' => 'Arial',
'priority' => 4,
'choices' => array(
'Roboto' => __('Roboto', 'kirki'),
'Arial' => __('Arial', 'kirki'),
),
) );
Kirki::add_field( '', array(
'type' => 'select',
'setting' => 'font_size',
'label' => 'Font Size',
'description' => __( '', 'kirki' ),
'section' => 'general',
'default' => '14px',
'priority' => 4,
'choices' => array(
'14px' => __('14px', 'personal-portfolio'),
'16px' => __('16px', 'kirki'),
'18px' => __('18px', 'kirki'),
),
) );
Kirki::add_section( 'team_member', array(
'title' => __( 'Team Members','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'team_heading',
'label' => __( 'Team Heading', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'OUR TEAM',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'team_content',
'label' => __( 'Team Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Lorem ipsum dolor sit amet consectetur.',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'team_main_content',
'label' => __( 'Team Main Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aut eaque, laboriosam veritatis, quos non quis ad perspiciatis, totam corporis ea, alias ut unde.',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'member_image1',
'label' => __( 'Team Member Image 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_name1',
'label' => __( 'Team Member name 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Kay Garland',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_designation1',
'label' => __( 'Team Member Designation 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Lead Designer',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member1_twitter',
'label' => __( 'Twitter Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member1_facebook',
'label' => __( 'Facebook Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member1_linkedin',
'label' => __( 'Linkedin Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'member_image2',
'label' => __( 'Team Member Image 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_name2',
'label' => __( 'Team Member name 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Kay Garland',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_designation2',
'label' => __( 'Team Member Designation 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Lead Designer',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member2_twitter',
'label' => __( 'Twitter Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member2_facebook',
'label' => __( 'Facebook Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member2_linkedin',
'label' => __( 'Linkedin Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'member_image3',
'label' => __( 'Team Member Image 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_name3',
'label' => __( 'Team Member name 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Kay Garland',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member_designation3',
'label' => __( 'Team Member Designation 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => 'Lead Designer',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member3_twitter',
'label' => __( 'Twitter Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member3_facebook',
'label' => __( 'Facebook Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'member3_linkedin',
'label' => __( 'Linkedin Id', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'team_member',
'default' => '#',
'priority' => 4,
) );
Kirki::add_section( 'clients_logo', array(
'title' => __( 'Clients Logo','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo1',
'label' => __( 'Client Logo 1', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo2',
'label' => __( 'Client Logo 2', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo3',
'label' => __( 'Client Logo 3', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo4',
'label' => __( 'Client Logo 4', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo5',
'label' => __( 'Client Logo 5', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo6',
'label' => __( 'Client Logo 6', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo7',
'label' => __( 'Client Logo 7', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo8',
'label' => __( 'Client Logo 8', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo9',
'label' => __( 'Client Logo 9', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_field( '', array(
'type' => 'image',
'setting' => 'logo10',
'label' => __( 'Client Logo 10', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'clients_logo',
'default' => '',
'priority' => 2,
) );
Kirki::add_section( 'contact', array(
'title' => __( 'Contact','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'contact_title',
'label' => __( 'Contact Title', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => 'Contact',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'contact_content',
'label' => __( 'Contact Content', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => 'Lorem ipsum dolor sit amet consectetur. ',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'google_langitude',
'label' => __( 'Google Map Langitude', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => '51.508742',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'google_lattitude',
'label' => __( 'Google Map Lattitude', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => '-0.120850',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'address',
'label' => __( 'Address Box', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => '',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'pin',
'label' => __( 'Pin Code', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => '30123',
'priority' => 3,
) );
Kirki::add_field( '', array(
'type' => 'text',
'setting' => 'contact',
'label' => __( 'Contact Number', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'contact',
'default' => '+39 041 240 5411',
'priority' => 3,
) );
Kirki::add_section( 'custom_css', array(
'title' => __( 'Custom Css','business-standard' ),
'description' => __( ' ','business-standard'),
'panel' => '', // Not typically needed.
'priority' => 2,
'capability' => 'edit_theme_options',
'theme_supports' => '', // Rarely needed.
) );
Kirki::add_field( '', array(
'type' => 'textarea',
'setting' => 'custom',
'label' => __( '', 'kirki' ),
'description' => __( '', 'kirki' ),
'section' => 'custom_css',
'default' => '',
'priority' => 4,
) );
?>