Slide 31
Slide 31 text
function wcbrn_customize_register( WP_Customize_Manager $wp_customize ) {
$wp_customize->add_control( 'frontpage_youtube_video_id', [
'type' => 'text',
'label' => __( 'Frontpage Video', 'wcbrn-theme' ),
'description' => __( 'Enter an ID of a YouTube video which is
displayed on the frontpage.', 'wcbrn-theme' ),
'section' => 'wcbrn_theme_options',
'active_callback' => 'is_front_page',
] );
}
add_action( 'customize_register', 'wcbrn_customize_register' );