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