'text_color_first', 'default' => '#404040', 'label' => __('Text Color', 'blogghiamo') ); $colors[] = array( 'slug'=>'box_color_second', 'default' => '#ffffff', 'label' => __('Box Color', 'blogghiamo') ); $colors[] = array( 'slug'=>'special_color_third', 'default' => '#0a7db0', 'label' => __('Special Color', 'blogghiamo') ); foreach( $colors as $blogghiamo_theme_options ) { // SETTINGS $wp_customize->add_setting( 'blogghiamo_theme_options[' . $blogghiamo_theme_options['slug'] . ']', array( 'default' => $blogghiamo_theme_options['default'], 'type' => 'option', 'sanitize_callback' => 'sanitize_hex_color', 'capability' => 'edit_theme_options' ) ); // CONTROLS $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, $blogghiamo_theme_options['slug'], array('label' => $blogghiamo_theme_options['label'], 'section' => 'colors', 'settings' =>'blogghiamo_theme_options[' . $blogghiamo_theme_options['slug'] . ']', ) ) ); } /* Start Blogghiamo Options ===================================================== */ $wp_customize->add_section( 'cresta_blogghiamo_options', array( 'title' => esc_attr__( 'Blogghiamo Theme Options', 'blogghiamo' ), 'priority' => 50, ) ); /* Social Icons ===================================================== */ $socialmedia = array(); $socialmedia[] = array( 'slug'=>'facebookurl', 'default' => '#', 'label' => __('Facebook URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'twitterurl', 'default' => '#', 'label' => __('Twitter URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'googleplusurl', 'default' => '#', 'label' => __('Google Plus URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'linkedinurl', 'default' => '#', 'label' => __('Linkedin URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'instagramurl', 'default' => '#', 'label' => __('Instagram URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'youtubeurl', 'default' => '#', 'label' => __('YouTube URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'pinteresturl', 'default' => '#', 'label' => __('Pinterest URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'tumblrurl', 'default' => '#', 'label' => __('Tumblr URL', 'blogghiamo') ); $socialmedia[] = array( 'slug'=>'vkurl', 'default' => '#', 'label' => __('VK URL', 'blogghiamo') ); foreach( $socialmedia as $blogghiamo_theme_options ) { // SETTINGS $wp_customize->add_setting( 'blogghiamo_theme_options_' . $blogghiamo_theme_options['slug'], array( 'default' => $blogghiamo_theme_options['default'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', 'type' => 'theme_mod', ) ); // CONTROLS $wp_customize->add_control( $blogghiamo_theme_options['slug'], array('label' => $blogghiamo_theme_options['label'], 'section' => 'cresta_blogghiamo_options', 'settings' =>'blogghiamo_theme_options_' . $blogghiamo_theme_options['slug'], ) ); } /* Email Button ===================================================== */ $wp_customize->add_setting('blogghiamo_theme_options_emailurl', array( 'default' => '#', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'is_email' ) ); $wp_customize->add_control('blogghiamo_theme_options_emailurl', array( 'label' => __( 'Your Email', 'blogghiamo' ), 'section' => 'cresta_blogghiamo_options', 'settings' => 'blogghiamo_theme_options_emailurl', ) ); /* Search Button ===================================================== */ $wp_customize->add_setting('blogghiamo_theme_options_hidesearch', array( 'default' => '1', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogghiamo_sanitize_checkbox' ) ); $wp_customize->add_control('blogghiamo_theme_options_hidesearch', array( 'label' => __( 'Show Search Button', 'blogghiamo' ), 'section' => 'cresta_blogghiamo_options', 'settings' => 'blogghiamo_theme_options_hidesearch', 'type' => 'checkbox', ) ); /* RSS Icon ===================================================== */ $wp_customize->add_setting('blogghiamo_theme_options_rss', array( 'default' => '1', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogghiamo_sanitize_checkbox' ) ); $wp_customize->add_control('blogghiamo_theme_options_rss', array( 'label' => __( 'Show RSS Icon', 'blogghiamo' ), 'section' => 'cresta_blogghiamo_options', 'settings' => 'blogghiamo_theme_options_rss', 'type' => 'checkbox', ) ); /* Full or Excerpt post ===================================================== */ $wp_customize->add_setting('blogghiamo_theme_options_postshow', array( 'default' => '1', 'type' => 'theme_mod', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogghiamo_sanitize_checkbox' ) ); $wp_customize->add_control('blogghiamo_theme_options_postshow', array( 'label' => __( 'Check if you want to show excerpt, uncheck if you want to show full post', 'blogghiamo' ), 'section' => 'cresta_blogghiamo_options', 'settings' => 'blogghiamo_theme_options_postshow', 'type' => 'checkbox', ) ); /* Upgrade to PRO ===================================================== */ class Blogghiamo_Customize_Upgrade_Control extends WP_Customize_Control { public function render_content() { ?>
24,90€