mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-26 11:08:06 +01:00
030bc377dd
This adds the ability for themes to add support for videos in custom headers by passing `'video' => true` as an argument when adding theme support for custom headers. Custom video headers are managed through the “Header Visuals” (i.e. “Header Image”) panel in the Customizer where you can select a video from the media library or set a URL to an external video (YouTube for now) for use in custom headers. This introduces several new functions: `has_header_video()` – Check whether a header video is set or not. `get_header_video_url()` – Retrieve header video URL for custom header. `the_header_video_url()` – Display header video URL. `get_header_video_settings()` – Retrieve header video settings. `has_custom_header()` – Check whether a custom header is set or not. `get_custom_header_markup()` – Retrieve the markup for a custom header. `the_custom_header_markup()` – Print the markup for a custom header. And a new file, `wp-includes/js/wp-custom-header.js` that handles loading videos in custom headers. This also enables video headers in the Twenty Seventeen and Twenty Fourteen themes. Props davidakennedy, celloexpressions, bradyvercher, laurelfulford, joemcgill. Fixes #38172. Built from https://develop.svn.wordpress.org/trunk@38985 git-svn-id: http://core.svn.wordpress.org/trunk@38928 1a063a9b-81f0-0310-95a4-ce76da25c4cd
242 lines
7.8 KiB
PHP
242 lines
7.8 KiB
PHP
<?php
|
|
/**
|
|
* Twenty Seventeen: Theme Customizer
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Seventeen
|
|
* @since 1.0
|
|
*/
|
|
|
|
/**
|
|
* Add postMessage support for site title and description for the Theme Customizer.
|
|
*
|
|
* @param WP_Customize_Manager $wp_customize Theme Customizer object.
|
|
*/
|
|
function twentyseventeen_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';
|
|
$wp_customize->get_setting( 'header_image' )->transport = 'postMessage';
|
|
$wp_customize->get_setting( 'header_image_data' )->transport = 'postMessage';
|
|
|
|
$wp_customize->selective_refresh->add_partial( 'blogname', array(
|
|
'selector' => '.site-title a',
|
|
'render_callback' => 'twentyseventeen_customize_partial_blogname',
|
|
) );
|
|
$wp_customize->selective_refresh->add_partial( 'blogdescription', array(
|
|
'selector' => '.site-description',
|
|
'render_callback' => 'twentyseventeen_customize_partial_blogdescription',
|
|
) );
|
|
|
|
/**
|
|
* Custom colors.
|
|
*/
|
|
$wp_customize->add_setting( 'colorscheme', array(
|
|
'default' => 'light',
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'twentyseventeen_sanitize_colorscheme',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'colorscheme_hue', array(
|
|
'default' => 250,
|
|
'transport' => 'postMessage',
|
|
'sanitize_callback' => 'absint', // The hue is stored as a positive integer.
|
|
) );
|
|
|
|
$wp_customize->add_control( 'colorscheme', array(
|
|
'type' => 'radio',
|
|
'label' => __( 'Color Scheme', 'twentyseventeen' ),
|
|
'choices' => array(
|
|
'light' => __( 'Light', 'twentyseventeen' ),
|
|
'dark' => __( 'Dark', 'twentyseventeen' ),
|
|
'custom' => __( 'Custom', 'twentyseventeen' ),
|
|
),
|
|
'section' => 'colors',
|
|
'priority' => 5,
|
|
) );
|
|
|
|
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'colorscheme_hue', array(
|
|
'mode' => 'hue',
|
|
'section' => 'colors',
|
|
'priority' => 6,
|
|
) ) );
|
|
|
|
/**
|
|
* Add the Theme Options section.
|
|
*/
|
|
$wp_customize->add_panel( 'options_panel', array(
|
|
'title' => __( 'Theme Options', 'twentyseventeen' ),
|
|
'description' => __( 'Configure your theme settings', 'twentyseventeen' ),
|
|
) );
|
|
|
|
// Page Options.
|
|
$wp_customize->add_section( 'page_options', array(
|
|
'title' => __( 'Single Page Layout', 'twentyseventeen' ),
|
|
'active_callback' => 'twentyseventeen_is_page',
|
|
'panel' => 'options_panel',
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'page_options', array(
|
|
'default' => 'two-column',
|
|
'sanitize_callback' => 'twentyseventeen_sanitize_layout',
|
|
'transport' => 'postMessage',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'page_options', array(
|
|
'label' => __( 'Page Layout', 'twentyseventeen' ),
|
|
'section' => 'page_options',
|
|
'type' => 'radio',
|
|
'description' => __( 'When no sidebar widgets are assigned, you can opt to display all pages with a one column or two column layout. When the two column layout is assigned, the page title is in one column and content is in the other.', 'twentyseventeen' ),
|
|
'choices' => array(
|
|
'one-column' => __( 'One Column', 'twentyseventeen' ),
|
|
'two-column' => __( 'Two Column', 'twentyseventeen' ),
|
|
),
|
|
) );
|
|
|
|
// Panel 1.
|
|
$wp_customize->add_section( 'panel_1', array(
|
|
'title' => __( 'Panel 1', 'twentyseventeen' ),
|
|
'active_callback' => 'is_front_page',
|
|
'panel' => 'options_panel',
|
|
'description' => __( 'Add an image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'twentyseventeen' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'panel_1', array(
|
|
'default' => false,
|
|
'sanitize_callback' => 'absint',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'panel_1', array(
|
|
'label' => __( 'Panel Content', 'twentyseventeen' ),
|
|
'section' => 'panel_1',
|
|
'type' => 'dropdown-pages',
|
|
) );
|
|
|
|
// Panel 2.
|
|
$wp_customize->add_section( 'panel_2', array(
|
|
'title' => __( 'Panel 2', 'twentyseventeen' ),
|
|
'active_callback' => 'is_front_page',
|
|
'panel' => 'options_panel',
|
|
'description' => __( 'Add an image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'twentyseventeen' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'panel_2', array(
|
|
'default' => false,
|
|
'sanitize_callback' => 'absint',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'panel_2', array(
|
|
'label' => __( 'Panel Content', 'twentyseventeen' ),
|
|
'section' => 'panel_2',
|
|
'type' => 'dropdown-pages',
|
|
) );
|
|
|
|
// Panel 3.
|
|
$wp_customize->add_section( 'panel_3', array(
|
|
'title' => __( 'Panel 3', 'twentyseventeen' ),
|
|
'active_callback' => 'is_front_page',
|
|
'panel' => 'options_panel',
|
|
'description' => __( 'Add an image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'twentyseventeen' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'panel_3', array(
|
|
'default' => false,
|
|
'sanitize_callback' => 'absint',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'panel_3', array(
|
|
'label' => __( 'Panel Content', 'twentyseventeen' ),
|
|
'section' => 'panel_3',
|
|
'type' => 'dropdown-pages',
|
|
) );
|
|
|
|
// Panel 4.
|
|
$wp_customize->add_section( 'panel_4', array(
|
|
'title' => __( 'Panel 4', 'twentyseventeen' ),
|
|
'active_callback' => 'is_front_page',
|
|
'panel' => 'options_panel',
|
|
'description' => __( 'Add an image to your panel by setting a featured image in the page editor. If you don’t select a page, this panel will not be displayed.', 'twentyseventeen' ),
|
|
) );
|
|
|
|
$wp_customize->add_setting( 'panel_4', array(
|
|
'default' => false,
|
|
'sanitize_callback' => 'absint',
|
|
) );
|
|
|
|
$wp_customize->add_control( 'panel_4', array(
|
|
'label' => __( 'Panel Content', 'twentyseventeen' ),
|
|
'section' => 'panel_4',
|
|
'type' => 'dropdown-pages',
|
|
) );
|
|
}
|
|
add_action( 'customize_register', 'twentyseventeen_customize_register' );
|
|
|
|
/**
|
|
* Sanitize a radio button.
|
|
*/
|
|
function twentyseventeen_sanitize_layout( $input ) {
|
|
$valid = array(
|
|
'one-column' => __( 'One Column', 'twentyseventeen' ),
|
|
'two-column' => __( 'Two Column', 'twentyseventeen' ),
|
|
);
|
|
|
|
if ( array_key_exists( $input, $valid ) ) {
|
|
return $input;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Sanitize the colorscheme.
|
|
*/
|
|
function twentyseventeen_sanitize_colorscheme( $input ) {
|
|
$valid = array( 'light', 'dark', 'custom' );
|
|
|
|
if ( in_array( $input, $valid ) ) {
|
|
return $input;
|
|
}
|
|
|
|
return 'light';
|
|
}
|
|
|
|
/**
|
|
* Render the site title for the selective refresh partial.
|
|
*
|
|
* @since Twenty Seventeen 1.0
|
|
* @see twentyseventeen_customize_register()
|
|
*
|
|
* @return void
|
|
*/
|
|
function twentyseventeen_customize_partial_blogname() {
|
|
bloginfo( 'name' );
|
|
}
|
|
|
|
/**
|
|
* Render the site tagline for the selective refresh partial.
|
|
*
|
|
* @since Twenty Seventeen 1.0
|
|
* @see twentyseventeen_customize_register()
|
|
*
|
|
* @return void
|
|
*/
|
|
function twentyseventeen_customize_partial_blogdescription() {
|
|
bloginfo( 'description' );
|
|
}
|
|
|
|
/**
|
|
* Binds JS handlers to make Theme Customizer preview reload changes asynchronously.
|
|
*/
|
|
function twentyseventeen_customize_preview_js() {
|
|
wp_enqueue_script( 'twentyseventeen-customizer', get_theme_file_uri( '/assets/js/customizer.js' ), array( 'customize-preview' ), '1.0', true );
|
|
}
|
|
add_action( 'customize_preview_init', 'twentyseventeen_customize_preview_js' );
|
|
|
|
/**
|
|
* Some extra JavaScript to improve the user experience in the Customizer for this theme.
|
|
*/
|
|
function twentyseventeen_panels_js() {
|
|
wp_enqueue_script( 'twentyseventeen-panel-customizer', get_theme_file_uri( '/assets/js/panel-customizer.js' ), array(), '1.0', true );
|
|
}
|
|
add_action( 'customize_controls_enqueue_scripts', 'twentyseventeen_panels_js' );
|