mirror of
https://ghproxy.net/https://github.com/AlxMedia/splits.git
synced 2025-08-26 14:27:40 +08:00
729 lines
26 KiB
PHP
729 lines
26 KiB
PHP
|
<?php
|
||
|
if ( ! class_exists( 'Kirki' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/* Add Config
|
||
|
/* ------------------------------------ */
|
||
|
Kirki::add_config( 'split', array(
|
||
|
'capability' => 'edit_theme_options',
|
||
|
'option_type' => 'theme_mod',
|
||
|
) );
|
||
|
|
||
|
/* Add Panels
|
||
|
/* ------------------------------------ */
|
||
|
Kirki::add_panel( 'options', array(
|
||
|
'priority' => 10,
|
||
|
'title' => esc_html__( 'Theme Options', 'split' ),
|
||
|
) );
|
||
|
|
||
|
/* Add Sections
|
||
|
/* ------------------------------------ */
|
||
|
Kirki::add_section( 'general', array(
|
||
|
'priority' => 10,
|
||
|
'title' => esc_html__( 'General', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'blog', array(
|
||
|
'priority' => 20,
|
||
|
'title' => esc_html__( 'Blog', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'header', array(
|
||
|
'priority' => 30,
|
||
|
'title' => esc_html__( 'Header', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'footer', array(
|
||
|
'priority' => 40,
|
||
|
'title' => esc_html__( 'Footer', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'layout', array(
|
||
|
'priority' => 50,
|
||
|
'title' => esc_html__( 'Layout', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'sidebars', array(
|
||
|
'priority' => 60,
|
||
|
'title' => esc_html__( 'Sidebars', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'social', array(
|
||
|
'priority' => 70,
|
||
|
'title' => esc_html__( 'Social Links', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
Kirki::add_section( 'styling', array(
|
||
|
'priority' => 80,
|
||
|
'title' => esc_html__( 'Styling', 'split' ),
|
||
|
'panel' => 'options',
|
||
|
) );
|
||
|
|
||
|
/* Add Fields
|
||
|
/* ------------------------------------ */
|
||
|
|
||
|
// General: Mobile Sidebar
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'mobile-sidebar-hide',
|
||
|
'label' => esc_html__( 'Mobile Sidebar Content', 'split' ),
|
||
|
'description' => esc_html__( 'Sidebar content on low-resolution mobile devices (320px)', 'split' ),
|
||
|
'section' => 'general',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// General: Post Comments
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'post-comments',
|
||
|
'label' => esc_html__( 'Post Comments', 'split' ),
|
||
|
'description' => esc_html__( 'Comments on posts', 'split' ),
|
||
|
'section' => 'general',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// General: Page Comments
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'page-comments',
|
||
|
'label' => esc_html__( 'Page Comments', 'split' ),
|
||
|
'description' => esc_html__( 'Comments on pages', 'split' ),
|
||
|
'section' => 'general',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// General: Recommended Plugins
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'recommended-plugins',
|
||
|
'label' => esc_html__( 'Recommended Plugins', 'split' ),
|
||
|
'description' => esc_html__( 'Enable or disable the recommended plugins notice', 'split' ),
|
||
|
'section' => 'general',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Blog: Blog Layout
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio',
|
||
|
'settings' => 'blog-layout',
|
||
|
'label' => esc_html__( 'Blog Layout', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'blog-list',
|
||
|
'choices' => array(
|
||
|
'blog-standard' => esc_html__( 'Standard', 'split' ),
|
||
|
'blog-grid' => esc_html__( 'Grid', 'split' ),
|
||
|
'blog-list' => esc_html__( 'List', 'split' ),
|
||
|
),
|
||
|
) );
|
||
|
// Blog: Heading
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'text',
|
||
|
'settings' => 'blog-heading',
|
||
|
'label' => esc_html__( 'Heading', 'split' ),
|
||
|
'description' => esc_html__( 'Your blog heading', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '',
|
||
|
) );
|
||
|
// Blog: Subheading
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'text',
|
||
|
'settings' => 'blog-subheading',
|
||
|
'label' => esc_html__( 'Subheading', 'split' ),
|
||
|
'description' => esc_html__( 'Your blog subheading', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '',
|
||
|
) );
|
||
|
// Blog: Excerpt Length
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'excerpt-length',
|
||
|
'label' => esc_html__( 'Excerpt Length', 'split' ),
|
||
|
'description' => esc_html__( 'Max number of words. Set it to 0 to disable.', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '24',
|
||
|
'choices' => array(
|
||
|
'min' => '0',
|
||
|
'max' => '100',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|
||
|
// Blog: Featured Category
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 'featured-category',
|
||
|
'label' => esc_html__( 'Featured Category', 'split' ),
|
||
|
'description' => esc_html__( 'By not selecting a category, it will show your latest post(s) from all categories', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '',
|
||
|
'choices' => Kirki_Helper::get_terms( 'category' ),
|
||
|
'placeholder' => esc_html__( 'Select a category', 'split' ),
|
||
|
) );
|
||
|
// Blog: Featured Post Count
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'featured-posts-count',
|
||
|
'label' => esc_html__( 'Featured Post Count', 'split' ),
|
||
|
'description' => esc_html__( 'Max number of featured posts to display on the homepage.', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '3',
|
||
|
'choices' => array(
|
||
|
'min' => '1',
|
||
|
'max' => '6',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|
||
|
// Blog: Featured Posts Include
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'checkbox',
|
||
|
'settings' => 'featured-posts-include',
|
||
|
'label' => esc_html__( 'Featured Posts', 'split' ),
|
||
|
'description' => esc_html__( 'To show featured posts in the slider AND the content below. Usually not recommended.', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => false,
|
||
|
) );
|
||
|
// Blog: Highlight Category
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 'highlight-category',
|
||
|
'label' => esc_html__( 'Highlight Category', 'split' ),
|
||
|
'description' => esc_html__( 'By not selecting a category, it will show your latest post(s) from all categories', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '',
|
||
|
'choices' => Kirki_Helper::get_terms( 'category' ),
|
||
|
'placeholder' => esc_html__( 'Select a category', 'split' ),
|
||
|
) );
|
||
|
// Blog: Highlights Category Count
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'highlight-posts-count',
|
||
|
'label' => esc_html__( 'Highlight Post Count', 'split' ),
|
||
|
'description' => esc_html__( 'Max number of highlight posts to display. Set it to 0 to disable.', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => '7',
|
||
|
'choices' => array(
|
||
|
'min' => '0',
|
||
|
'max' => '12',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|
||
|
// Blog: Frontpage Widgets Top
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'frontpage-widgets-top',
|
||
|
'label' => esc_html__( 'Frontpage Widgets Top', 'split' ),
|
||
|
'description' => esc_html__( '2 columns of widgets', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// Blog: Frontpage Widgets Bottom
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'frontpage-widgets-bottom',
|
||
|
'label' => esc_html__( 'Frontpage Widgets Bottom', 'split' ),
|
||
|
'description' => esc_html__( '2 columns of widgets', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// Blog: Comment Count
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'comment-count',
|
||
|
'label' => esc_html__( 'Thumbnail Comment Count', 'split' ),
|
||
|
'description' => esc_html__( 'Comment count on thumbnails', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Blog: Single - Authorbox
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'author-bio',
|
||
|
'label' => esc_html__( 'Single - Author Bio', 'split' ),
|
||
|
'description' => esc_html__( 'Shows post author description, if it exists', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Blog: Single - Related Posts
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio',
|
||
|
'settings' => 'related-posts',
|
||
|
'label' => esc_html__( 'Single - Related Posts', 'split' ),
|
||
|
'description' => esc_html__( 'Shows randomized related articles below the post', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 'categories',
|
||
|
'choices' => array(
|
||
|
'disable' => esc_html__( 'Disable', 'split' ),
|
||
|
'categories'=> esc_html__( 'Related by categories', 'split' ),
|
||
|
'tags' => esc_html__( 'Related by tags', 'split' ),
|
||
|
),
|
||
|
) );
|
||
|
// Blog: Single - Post Navigation
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio',
|
||
|
'settings' => 'post-nav',
|
||
|
'label' => esc_html__( 'Single - Post Navigation', 'split' ),
|
||
|
'description' => esc_html__( 'Shows links to the next and previous article', 'split' ),
|
||
|
'section' => 'blog',
|
||
|
'default' => 's1',
|
||
|
'choices' => array(
|
||
|
'disable' => esc_html__( 'Disable', 'split' ),
|
||
|
's1' => esc_html__( 'Sidebar Primary', 'split' ),
|
||
|
'content' => esc_html__( 'Below content', 'split' ),
|
||
|
),
|
||
|
) );
|
||
|
// Header: Ads
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'header-ads',
|
||
|
'label' => esc_html__( 'Header Ads', 'split' ),
|
||
|
'description' => esc_html__( 'Header widget ads area', 'split' ),
|
||
|
'section' => 'header',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// Header: Search
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'header-search',
|
||
|
'label' => esc_html__( 'Header Search', 'split' ),
|
||
|
'description' => esc_html__( 'Header search button', 'split' ),
|
||
|
'section' => 'header',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Header: Social Links
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'header-social',
|
||
|
'label' => esc_html__( 'Header Social Links', 'split' ),
|
||
|
'description' => esc_html__( 'Social link icon buttons', 'split' ),
|
||
|
'section' => 'header',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Footer: Ads
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'footer-ads',
|
||
|
'label' => esc_html__( 'Footer Ads', 'split' ),
|
||
|
'description' => esc_html__( 'Footer widget ads area', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// Footer: Widget Columns
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'footer-widgets',
|
||
|
'label' => esc_html__( 'Footer Widget Columns', 'split' ),
|
||
|
'description' => esc_html__( 'Select columns to enable footer widgets. Recommended number: 3', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => '0',
|
||
|
'choices' => array(
|
||
|
'0' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'1' => get_template_directory_uri() . '/functions/images/footer-widgets-1.png',
|
||
|
'2' => get_template_directory_uri() . '/functions/images/footer-widgets-2.png',
|
||
|
'3' => get_template_directory_uri() . '/functions/images/footer-widgets-3.png',
|
||
|
'4' => get_template_directory_uri() . '/functions/images/footer-widgets-4.png',
|
||
|
),
|
||
|
) );
|
||
|
// Footer: Social Links
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'footer-social',
|
||
|
'label' => esc_html__( 'Footer Social Links', 'split' ),
|
||
|
'description' => esc_html__( 'Social link icon buttons', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Footer: Custom Logo
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'image',
|
||
|
'settings' => 'footer-logo',
|
||
|
'label' => esc_html__( 'Footer Logo', 'split' ),
|
||
|
'description' => esc_html__( 'Upload your custom logo image', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => '',
|
||
|
) );
|
||
|
// Footer: Copyright
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'text',
|
||
|
'settings' => 'copyright',
|
||
|
'label' => esc_html__( 'Footer Copyright', 'split' ),
|
||
|
'description' => esc_html__( 'Replace the footer copyright text', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => '',
|
||
|
) );
|
||
|
// Footer: Credit
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'credit',
|
||
|
'label' => esc_html__( 'Footer Credit', 'split' ),
|
||
|
'description' => esc_html__( 'Footer credit text', 'split' ),
|
||
|
'section' => 'footer',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Layout: Global
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-global',
|
||
|
'label' => esc_html__( 'Global Layout', 'split' ),
|
||
|
'description' => esc_html__( 'Other layouts will override this option if they are set', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'col-2cl',
|
||
|
'choices' => array(
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Home
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-home',
|
||
|
'label' => esc_html__( 'Home', 'split' ),
|
||
|
'description' => esc_html__( '(is_home) Posts homepage layout', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Single
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-single',
|
||
|
'label' => esc_html__( 'Single', 'split' ),
|
||
|
'description' => esc_html__( '(is_single) Single post layout - If a post has a set layout, it will override this.', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Archive
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-archive',
|
||
|
'label' => esc_html__( 'Archive', 'split' ),
|
||
|
'description' => esc_html__( '(is_archive) Category, date, tag and author archive layout', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout : Archive - Category
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-archive-category',
|
||
|
'label' => esc_html__( 'Archive - Category', 'split' ),
|
||
|
'description' => esc_html__( '(is_category) Category archive layout', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Search
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-search',
|
||
|
'label' => esc_html__( 'Search', 'split' ),
|
||
|
'description' => esc_html__( '(is_search) Search page layout', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Error 404
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-404',
|
||
|
'label' => esc_html__( 'Error 404', 'split' ),
|
||
|
'description' => esc_html__( '(is_404) Error 404 page layout', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
// Layout: Default Page
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'radio-image',
|
||
|
'settings' => 'layout-page',
|
||
|
'label' => esc_html__( 'Default Page', 'split' ),
|
||
|
'description' => esc_html__( '(is_page) Default page layout - If a page has a set layout, it will override this.', 'split' ),
|
||
|
'section' => 'layout',
|
||
|
'default' => 'inherit',
|
||
|
'choices' => array(
|
||
|
'inherit' => get_template_directory_uri() . '/functions/images/layout-off.png',
|
||
|
'col-1c' => get_template_directory_uri() . '/functions/images/col-1c.png',
|
||
|
'col-2cl' => get_template_directory_uri() . '/functions/images/col-2cl.png',
|
||
|
),
|
||
|
) );
|
||
|
|
||
|
|
||
|
function split_kirki_sidebars_select() {
|
||
|
$sidebars = array();
|
||
|
if ( isset( $GLOBALS['wp_registered_sidebars'] ) ) {
|
||
|
$sidebars = $GLOBALS['wp_registered_sidebars'];
|
||
|
}
|
||
|
$sidebars_choices = array();
|
||
|
foreach ( $sidebars as $sidebar ) {
|
||
|
$sidebars_choices[ $sidebar['id'] ] = $sidebar['name'];
|
||
|
}
|
||
|
if ( ! class_exists( 'Kirki' ) ) {
|
||
|
return;
|
||
|
}
|
||
|
// Sidebars: Select
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-home',
|
||
|
'label' => esc_html__( 'Home', 'split' ),
|
||
|
'description' => esc_html__( '(is_home) Primary', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-single',
|
||
|
'label' => esc_html__( 'Single', 'split' ),
|
||
|
'description' => esc_html__( '(is_single) Primary - If a single post has a unique sidebar, it will override this.', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-archive',
|
||
|
'label' => esc_html__( 'Archive', 'split' ),
|
||
|
'description' => esc_html__( '(is_archive) Primary', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-archive-category',
|
||
|
'label' => esc_html__( 'Archive - Category', 'split' ),
|
||
|
'description' => esc_html__( '(is_category) Primary', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-search',
|
||
|
'label' => esc_html__( 'Search', 'split' ),
|
||
|
'description' => esc_html__( '(is_search) Primary', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-404',
|
||
|
'label' => esc_html__( 'Error 404', 'split' ),
|
||
|
'description' => esc_html__( '(is_404) Primary', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 's1-page',
|
||
|
'label' => esc_html__( 'Default Page', 'split' ),
|
||
|
'description' => esc_html__( '(is_page) Primary - If a page has a unique sidebar, it will override this.', 'split' ),
|
||
|
'section' => 'sidebars',
|
||
|
'choices' => $sidebars_choices,
|
||
|
'default' => '',
|
||
|
'placeholder' => esc_html__( 'Select a sidebar', 'split' ),
|
||
|
) );
|
||
|
|
||
|
}
|
||
|
add_action( 'init', 'split_kirki_sidebars_select', 999 );
|
||
|
|
||
|
// Social Links: List
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'repeater',
|
||
|
'label' => esc_html__( 'Create Social Links', 'split' ),
|
||
|
'description' => esc_html__( 'Create and organize your social links', 'split' ),
|
||
|
'section' => 'social',
|
||
|
'tooltip' => esc_html__( 'Font Awesome names:', 'split' ) . ' <a href="https://fontawesome.com/icons?d=gallery&s=brands&m=free" target="_blank"><strong>' . esc_html__( 'View All', 'split' ) . ' </strong></a>',
|
||
|
'row_label' => array(
|
||
|
'type' => 'text',
|
||
|
'value' => esc_html__('social link', 'split' ),
|
||
|
),
|
||
|
'settings' => 'social-links',
|
||
|
'default' => '',
|
||
|
'fields' => array(
|
||
|
'social-title' => array(
|
||
|
'type' => 'text',
|
||
|
'label' => esc_html__( 'Title', 'split' ),
|
||
|
'description' => esc_html__( 'Ex: Facebook', 'split' ),
|
||
|
'default' => '',
|
||
|
),
|
||
|
'social-icon' => array(
|
||
|
'type' => 'text',
|
||
|
'label' => esc_html__( 'Icon Name', 'split' ),
|
||
|
'description' => esc_html__( 'Font Awesome icons. Ex: fa-facebook ', 'split' ) . ' <a href="https://fontawesome.com/icons?d=gallery&s=brands&m=free" target="_blank"><strong>' . esc_html__( 'View All', 'split' ) . ' </strong></a>',
|
||
|
'default' => 'fa-',
|
||
|
),
|
||
|
'social-link' => array(
|
||
|
'type' => 'link',
|
||
|
'label' => esc_html__( 'Link', 'split' ),
|
||
|
'description' => esc_html__( 'Enter the full url for your icon button', 'split' ),
|
||
|
'default' => 'http://',
|
||
|
),
|
||
|
'social-color' => array(
|
||
|
'type' => 'color',
|
||
|
'label' => esc_html__( 'Icon Color', 'split' ),
|
||
|
'description' => esc_html__( 'Set a unique color for your icon (optional)', 'split' ),
|
||
|
'default' => '',
|
||
|
),
|
||
|
'social-target' => array(
|
||
|
'type' => 'checkbox',
|
||
|
'label' => esc_html__( 'Open in new window', 'split' ),
|
||
|
'default' => false,
|
||
|
),
|
||
|
)
|
||
|
) );
|
||
|
// Styling: Enable
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'dynamic-styles',
|
||
|
'label' => esc_html__( 'Dynamic Styles', 'split' ),
|
||
|
'description' => esc_html__( 'Turn on to use the styling options below', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => 'on',
|
||
|
) );
|
||
|
// Styling: Boxed Layout
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'switch',
|
||
|
'settings' => 'boxed',
|
||
|
'label' => esc_html__( 'Boxed Layout', 'split' ),
|
||
|
'description' => esc_html__( 'Use a boxed layout', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => 'off',
|
||
|
) );
|
||
|
// Styling: Font
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'select',
|
||
|
'settings' => 'font',
|
||
|
'label' => esc_html__( 'Font', 'split' ),
|
||
|
'description' => esc_html__( 'Select font for the theme', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => 'roboto',
|
||
|
'choices' => array(
|
||
|
'titillium-web' => esc_html__( 'Titillium Web, Latin (Self-hosted)', 'split' ),
|
||
|
'titillium-web-ext' => esc_html__( 'Titillium Web, Latin-Ext', 'split' ),
|
||
|
'droid-serif' => esc_html__( 'Droid Serif, Latin', 'split' ),
|
||
|
'source-sans-pro' => esc_html__( 'Source Sans Pro, Latin-Ext', 'split' ),
|
||
|
'lato' => esc_html__( 'Lato, Latin', 'split' ),
|
||
|
'raleway' => esc_html__( 'Raleway, Latin', 'split' ),
|
||
|
'ubuntu' => esc_html__( 'Ubuntu, Latin-Ext', 'split' ),
|
||
|
'ubuntu-cyr' => esc_html__( 'Ubuntu, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'roboto' => esc_html__( 'Roboto, Latin-Ext', 'split' ),
|
||
|
'roboto-cyr' => esc_html__( 'Roboto, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'roboto-condensed' => esc_html__( 'Roboto Condensed, Latin-Ext', 'split' ),
|
||
|
'roboto-condensed-cyr' => esc_html__( 'Roboto Condensed, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'roboto-slab' => esc_html__( 'Roboto Slab, Latin-Ext', 'split' ),
|
||
|
'roboto-slab-cyr' => esc_html__( 'Roboto Slab, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'playfair-display' => esc_html__( 'Playfair Display, Latin-Ext', 'split' ),
|
||
|
'playfair-display-cyr' => esc_html__( 'Playfair Display, Latin / Cyrillic', 'split' ),
|
||
|
'open-sans' => esc_html__( 'Open Sans, Latin-Ext', 'split' ),
|
||
|
'open-sans-cyr' => esc_html__( 'Open Sans, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'pt-serif' => esc_html__( 'PT Serif, Latin-Ext', 'split' ),
|
||
|
'pt-serif-cyr' => esc_html__( 'PT Serif, Latin / Cyrillic-Ext', 'split' ),
|
||
|
'arial' => esc_html__( 'Arial', 'split' ),
|
||
|
'georgia' => esc_html__( 'Georgia', 'split' ),
|
||
|
'verdana' => esc_html__( 'Verdana', 'split' ),
|
||
|
'tahoma' => esc_html__( 'Tahoma', 'split' ),
|
||
|
),
|
||
|
) );
|
||
|
// Styling: Container Width
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'container-width',
|
||
|
'label' => esc_html__( 'Website Max-width', 'split' ),
|
||
|
'description' => esc_html__( 'Max-width of the container.', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '1680',
|
||
|
'choices' => array(
|
||
|
'min' => '1024',
|
||
|
'max' => '1920',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|
||
|
// Styling: Primary Color
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'color',
|
||
|
'settings' => 'color-1',
|
||
|
'label' => esc_html__( 'Primary Color', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '#cd483c',
|
||
|
) );
|
||
|
// Styling: Mobile Menu Color
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'color',
|
||
|
'settings' => 'color-mobile-menu',
|
||
|
'label' => esc_html__( 'Mobile Menu Color', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '#cd483c',
|
||
|
) );
|
||
|
// Styling: Footer Menu Color
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'color',
|
||
|
'settings' => 'color-footer-menu',
|
||
|
'label' => esc_html__( 'Footer Menu Color', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '#222222',
|
||
|
) );
|
||
|
// Styling: Footer Background
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'color',
|
||
|
'settings' => 'color-footer',
|
||
|
'label' => esc_html__( 'Footer Background', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '#181818',
|
||
|
) );
|
||
|
// Styling: Header Logo Max-height
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'logo-max-height',
|
||
|
'label' => esc_html__( 'Header Logo Image Max-height', 'split' ),
|
||
|
'description' => esc_html__( 'Your logo image should have the double height of this to be high resolution', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '60',
|
||
|
'choices' => array(
|
||
|
'min' => '40',
|
||
|
'max' => '200',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|
||
|
// Styling: Image Border Radius
|
||
|
Kirki::add_field( 'split_theme', array(
|
||
|
'type' => 'slider',
|
||
|
'settings' => 'image-border-radius',
|
||
|
'label' => esc_html__( 'Image Border Radius', 'split' ),
|
||
|
'description' => esc_html__( 'Give your thumbnails and layout images rounded corners', 'split' ),
|
||
|
'section' => 'styling',
|
||
|
'default' => '0',
|
||
|
'choices' => array(
|
||
|
'min' => '0',
|
||
|
'max' => '15',
|
||
|
'step' => '1',
|
||
|
),
|
||
|
) );
|