HtmlToText
/** * setup all the premium settings. * * @package ultra * @since ultra 1.0 * @license gpl 2.0 */ function ultra_premium_theme_settings() { $settings = siteorigin_settings::single(); // header. $settings->add_field( 'logo', 'image_retina', 'media', __( 'retina logo', 'ultra' ), array( 'choose' => __( 'choose image', 'ultra' ), 'update' => __( 'set logo', 'ultra' ), 'description' => __( 'a double sized version of your logo for use on high pixel density displays. must be used in addition to standard logo.', 'ultra' ), ) ); // comments. $settings->add_field( 'comments', 'ajax_comments', 'checkbox', __( 'ajax comments', 'ultra' ), array( 'description' => __( 'allow users to submit comments without a page re-load on submit.', 'ultra' ), ) ); // social. $settings->add_field( 'social', 'share_post', 'checkbox', __( 'post sharing', 'ultra' ), array( 'description' => __( 'show icons to share your posts on facebook, twitter, google+ and linkedin.', 'ultra' ), ) ); $settings->add_field( 'social', 'share_page', 'checkbox', __( 'page sharing', 'ultra' ), array( 'description' => __( 'show icons to share your pages on facebook, twitter, google+ and linkedin.', 'ultra' ), ) ); $settings->add_field( 'social', 'twitter', 'text', __( 'twitter handle', 'ultra' ), array( 'description' => __( 'this handle will be recommended after a user shares one of your posts.', 'ultra' ), 'validator' => 'twitter', ) ); // footer. $settings->add_field('footer', 'attribution', 'checkbox', __( 'footer attribution link', 'ultra' ), array( 'description' => __( 'remove the theme attribution link from your footer without editing any code.', 'ultra' ), ) ); } add_action( 'siteorigin_settings_init', 'ultra_premium_theme_settings', 15 ); /** * @package ultra * @since ultra 1.0 * @license gpl 2.0 */ function ultra_customizer_init(){ $sections = apply_filters( 'ultra_customizer_sections', array( 'ultra_general' => array( 'title' => __('general', 'ultra'), 'priority' => 10, ), 'ultra_top_bar' => array( 'title' => __('top bar', 'ultra'), 'priority' => 20, ), 'ultra_header' => array( 'title' => __('header', 'ultra'), 'priority' => 30, ), 'ultra_main_menu' => array( 'title' => __('main menu', 'ultra'), 'priority' => 40, ), 'ultra_mobile_menu' => array( 'title' => __('mobile menu', 'ultra'), 'priority' => 50, ), 'ultra_content_header' => array( 'title' => __('content header', 'ultra'), 'priority' => 60, ), 'ultra_content' => array( 'title' => __('content', 'ultra'), 'priority' => 70, ), 'ultra_sidebar' => array( 'title' => __('sidebar', 'ultra'), 'priority' => 80, ), 'ultra_footer' => array( 'title' => __('footer', 'ultra'), 'priority' => 90, ), 'ultra_bottom_bar' => array( 'title' => __('bottom bar', 'ultra'), 'priority' => 90, ), ) ); $settings = apply_filters( 'ultra_premium_customizer_settings', array( 'ultra_general' => array( 'site_max_width' => array( 'type' => 'measurement', 'title' => __('site max width (px)', 'ultra'), 'default' => '1200', 'callback' => 'ultra_set_site_width', ), ), 'ultra_top_bar' => array( 'link_color' => array( 'type' => 'color', 'title' => __('link color', 'ultra'), 'default' => '#acaeaf', 'selector' => '#top-bar .top-bar-text span a, .top-bar-menu .menu li a:before, .top-bar-menu .menu li a, .top-bar-navigation ul li a, .top-bar-arrow:before', 'property' => 'color', ), 'link_hover_color' => array( 'type' => 'color', 'title' => __('link hover color', 'ultra'), 'default' => '#ffffff', 'selector' => '#top-bar .top-bar-text span a:hover, .top-bar-menu .menu li a:hover:before, .top-bar-menu .menu li a:hover, .top-bar-navigation ul li:hover a, .top-bar-navigation ul ul li:hover > a', 'property' => 'color', 'no_live' => true, ), 'menu_hover_accent_color' => array( 'type' => 'color', 'title' => __('menu hover accent color', 'ultra'), 'default' => '#0896fe', 'callback' => 'ultra_top_bar_menu_accent', 'no_live' => true, ), 'font' => array( 'type' => 'font', 'title' => __('font', 'ultra'), 'default' => 'lato', 'selector' => '#top-bar', ), 'text_size' => array( 'type' => 'measurement', 'title' => __('text size (px)', 'ultra'), 'default' => 12, 'unit' => 'px', 'selector' => '#top-bar .top-bar-text span, .top-bar-navigation ul li a', 'property' => 'font-size', ), 'height' => array( 'type' => 'measurement', 'title' => __('height (px)', 'ultra'), 'default' => 38, 'unit' => 'px', 'callback' => 'ultra_set_top_bar_height', ), 'background_color' => array( 'type' => 'color', 'title' => __('background color', 'ultra'), 'default' => '#313539', 'selector' => '#top-bar, .top-bar-arrow', 'property' => 'background-color', ), 'background_image' => array( 'type' => 'image', 'title' => __('background image', 'ultra'), 'default' => false, 'selector' => '#top-bar', 'property' => 'background-image', ), 'background_image_layout' => array( 'type' => 'select', 'title' => __('background image layout', 'ultra'), 'default' => '', 'selector' => '#top-bar', 'choices' => array( '' => __( 'default', 'ultra' ), 'center' => __( 'center', 'ultra' ), 'tile' => __( 'tile', 'ultra' ), 'cover' => __( 'cover', 'ultra' ), ), 'callback' => 'ultra_customizer_callback_image_layout' ), ), 'ultra_header' => array( 'site_title_color' => array( 'type' => 'color', 'title' => __('site title color', 'ultra'), 'default' => '#313539', 'selector' => '.site-branding h1.site-title', 'property' => 'color', ), 'site_title_font' => array( 'type' => 'font', 'title' => __('site title font', 'ultra'), 'default' => 'muli:300', 'selector' => '.site-header .site-branding h1.site-title', ), 'site_title_font_size' => array( 'type' => 'measurement', 'title' => __('site title font size (px)', 'ultra'), 'default' => 36, 'unit' => 'px', 'selector' => '.site-header .site-branding h1.site-title', 'property' => 'font-size', ), 'site_tagline_color' => array( 'type' => 'color', 'title' => __('site tagline color', 'ultra'), 'default' => '#313539', 'selector' => '.site-header .site-branding h2.site-description', 'property' => 'color', ), 'site_tagline_font' => array( 'type' => 'font', 'title' => __('site tagline font', 'ultra'), 'default' => 'lato', 'selector' => '.site-header .site-branding h2.site-description', ), 'site_tagline_font_size' => array( 'type' => 'measurement', 'title' => __('site tagline font size (px)', 'ultra'), 'default' => 14, 'unit' => 'px', 'selector' => '.site-header .site-branding h2.site-description', 'property' => 'font-size', ), 'height' => array( 'type' => 'measurement', 'title' => __('height (px)', 'ultra'), 'default' => 112, 'unit' => 'px', 'callback' => 'ultra_set_header_height', ), 'background_color' => array( 'type' => 'color', 'title' => __('background color', 'ultra'), 'default' => '#ffffff', 'callback' => 'ultra_set_header_background', ), 'background_image' => array( 'type' => 'image', 'title' => __('background image', 'ultra'), 'default' => false, 'callback' => 'ultra_set_header_background_image' ), 'background_image_layout' => array( 'type' => 'select', 'title' => __('background image layout', 'ultra'), 'default' => '', 'selector' => '.site-header:before', 'choices' => array( '' => __( 'default', 'ultra' ), 'center' => __( 'center', 'ultra' ), 'tile' => __( 'tile', 'ultra' ), 'cover' => __( 'cover', 'ultra' ), ), 'callback' => 'ultra_customizer_callback_image_layout' ), ), 'ultra_main_menu' => array( 'link_text_color' => array( 'type' => 'color', 'title' => __('link color', 'ultra'), 'default' => '#313539', 'selector' => '.main-navigation ul li a, .main-navigation .menu-search .se