File: //home/igennie.co.uk/public_html/wp-content/themes/blossom-coach/inc/customizer/site.php
<?php
/**
* Blossom Coach Customizer
*
* @package Blossom_Coach
*/
function blossom_coach_customize_register( $wp_customize ) {
/** Add postMessage support for site title and description */
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
$wp_customize->get_setting( 'background_color' )->transport = 'refresh';
$wp_customize->get_setting( 'background_image' )->transport = 'refresh';
if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial( 'blogname', array(
'selector' => '.site-title a',
'render_callback' => 'blossom_coach_customize_partial_blogname',
) );
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
'selector' => '.site-description',
'render_callback' => 'blossom_coach_customize_partial_blogdescription',
) );
}
/** Logo Width */
$wp_customize->add_setting(
'logo_width',
array(
'default' => 60,
'sanitize_callback' => 'blossom_coach_sanitize_number_absint',
'transport' => 'postMessage'
)
);
$wp_customize->add_control(
'logo_width',
array(
'label' => __( 'Logo Width', 'blossom-coach' ),
'description' => __( 'Set the width(px) of your Site Logo.', 'blossom-coach' ),
'section' => 'title_tagline',
'type' => 'number',
'input_attrs' => array(
'min' => 1
)
)
);
/** Site Title Font */
$wp_customize->add_setting(
'site_title_font',
array(
'default' => array(
'font-family' => 'Nunito',
'variant' => '700',
),
'sanitize_callback' => array( 'Blossom_Coach_Fonts', 'sanitize_typography' )
)
);
$wp_customize->add_control(
new Blossom_Coach_Typography_Control(
$wp_customize,
'site_title_font',
array(
'label' => __( 'Site Title Font', 'blossom-coach' ),
'description' => __( 'Site title and tagline font.', 'blossom-coach' ),
'section' => 'title_tagline',
'priority' => 60,
)
)
);
/** Site Title Font Size*/
$wp_customize->add_setting(
'site_title_font_size',
array(
'default' => 45,
'sanitize_callback' => 'blossom_coach_sanitize_number_absint'
)
);
$wp_customize->add_control(
new Blossom_Coach_Slider_Control(
$wp_customize,
'site_title_font_size',
array(
'section' => 'title_tagline',
'label' => __( 'Site Title Font Size', 'blossom-coach' ),
'description' => __( 'Change the font size of your site title.', 'blossom-coach' ),
'priority' => 65,
'choices' => array(
'min' => 10,
'max' => 200,
'step' => 1,
)
)
)
);
}
add_action( 'customize_register', 'blossom_coach_customize_register' );