diff --git src/wp-content/themes/twentyfifteen/inc/customizer.php src/wp-content/themes/twentyfifteen/inc/customizer.php
index 89b3b40..83b9ea3 100644
|
|
function twentyfifteen_customize_register( $wp_customize ) { |
53 | 53 | ) ); |
54 | 54 | |
55 | 55 | $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'header_background_color', array( |
56 | | 'label' => esc_html__( 'Header & Sidebar Background Color', 'twentyfifteen' ), |
| 56 | 'label' => __( 'Header & Sidebar Background Color', 'twentyfifteen' ), |
57 | 57 | 'section' => 'colors', |
58 | 58 | ) ) ); |
59 | 59 | } |
… |
… |
add_action( 'customize_controls_enqueue_scripts', 'twentyfifteen_customize_contr |
656 | 656 | function twentyfifteen_customize_preview_js() { |
657 | 657 | wp_enqueue_script( 'twentyfifteen-customizer', get_template_directory_uri() . '/js/customizer.js', array( 'customize-preview' ), '20141005', true ); |
658 | 658 | } |
659 | | add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' ); |
660 | | No newline at end of file |
| 659 | add_action( 'customize_preview_init', 'twentyfifteen_customize_preview_js' ); |