2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* understrap Theme Customizer
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add postMessage support for site title and description for the Theme Customizer.
|
|
|
|
*
|
|
|
|
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
|
|
|
|
*/
|
|
|
|
function understrap_customize_register( $wp_customize ) {
|
|
|
|
$wp_customize->get_setting( 'blogname' )->transport = 'postMessage';
|
|
|
|
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
|
|
|
|
$wp_customize->get_setting( 'header_textcolor' )->transport = 'postMessage';
|
2014-12-19 07:50:59 +00:00
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
}
|
|
|
|
add_action( 'customize_register', 'understrap_customize_register' );
|
|
|
|
|
2015-02-06 08:38:52 +00:00
|
|
|
function understrap_theme_customize_register( $wp_customize ) {
|
|
|
|
|
|
|
|
$wp_customize->add_section( 'understrap_theme_slider_options', array(
|
|
|
|
'title' => __( 'Slider Settings', 'understrap' )
|
|
|
|
) );
|
|
|
|
|
2015-02-16 14:19:44 +00:00
|
|
|
$wp_customize->add_setting( 'understrap_theme_slider_count_setting', array(
|
2015-03-13 14:46:51 +00:00
|
|
|
'default' => '1',
|
|
|
|
'sanitize_callback' => 'esc_textarea'
|
2015-02-16 14:19:44 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_control( 'understrap_theme_slider_count', array(
|
|
|
|
'label' => __( 'Number of slides displaying at once', 'understrap' ),
|
|
|
|
'section' => 'understrap_theme_slider_options',
|
|
|
|
'type' => 'text',
|
|
|
|
'settings' => 'understrap_theme_slider_count_setting'
|
|
|
|
) );
|
|
|
|
|
2015-02-06 08:38:52 +00:00
|
|
|
$wp_customize->add_setting( 'understrap_theme_slider_time_setting', array(
|
2015-03-13 14:46:51 +00:00
|
|
|
'default' => '5000',
|
|
|
|
'sanitize_callback' => 'esc_textarea'
|
2015-02-06 08:38:52 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_control( 'understrap_theme_slider_time', array(
|
|
|
|
'label' => __( 'Slider Time (in ms)', 'understrap' ),
|
|
|
|
'section' => 'understrap_theme_slider_options',
|
|
|
|
'type' => 'text',
|
|
|
|
'settings' => 'understrap_theme_slider_time_setting'
|
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_setting( 'understrap_theme_slider_loop_setting', array(
|
2015-03-13 14:46:51 +00:00
|
|
|
'default' => 'true',
|
|
|
|
'sanitize_callback' => 'esc_textarea'
|
2015-02-06 08:38:52 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_control( 'understrap_theme_loop', array(
|
|
|
|
'label' => __( 'Loop Slider Content', 'understrap' ),
|
|
|
|
'section' => 'understrap_theme_slider_options',
|
|
|
|
'type' => 'radio',
|
|
|
|
'choices' => array(
|
|
|
|
'true' => 'yes',
|
|
|
|
'false' => 'no',
|
|
|
|
),
|
|
|
|
'settings' => 'understrap_theme_slider_loop_setting'
|
|
|
|
) );
|
2015-03-10 08:04:07 +00:00
|
|
|
|
|
|
|
$wp_customize->add_section( 'understrap_theme_script_options', array(
|
|
|
|
'title' => __( 'Add scripts', 'understrap' )
|
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_setting( 'understrap_theme_script_code_setting', array(
|
2015-03-13 14:46:51 +00:00
|
|
|
'default' => '',
|
2015-08-17 19:39:36 +00:00
|
|
|
'sanitize_js_callback' => 'esc_js'
|
2015-03-10 08:04:07 +00:00
|
|
|
) );
|
|
|
|
|
|
|
|
$wp_customize->add_control( 'understrap_theme_script_code', array(
|
|
|
|
'label' => __( 'Add custom JS code here', 'understrap' ),
|
|
|
|
'section' => 'understrap_theme_script_options',
|
|
|
|
'type' => 'textarea',
|
|
|
|
'settings' => 'understrap_theme_script_code_setting'
|
|
|
|
) );
|
2015-02-06 08:38:52 +00:00
|
|
|
}
|
|
|
|
add_action( 'customize_register', 'understrap_theme_customize_register' );
|
|
|
|
|
2015-03-13 14:46:51 +00:00
|
|
|
|
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
/**
|
|
|
|
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
|
|
|
*/
|
|
|
|
function understrap_customize_preview_js() {
|
|
|
|
wp_enqueue_script( 'understrap_customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20130508', true );
|
|
|
|
}
|
|
|
|
add_action( 'customize_preview_init', 'understrap_customize_preview_js' );
|