choices ) ) {
return;
}
$name = '_customize-radio-' . $this->id;
?>
label ); ?>
description ) ) : ?>
description ); ?>
add_control(
new Theme_Slug_Custom_Radio_Image_Control(
// $wp_customize object
$wp_customize,
// $id
'blog_layout',
// $args
array(
'settings' => 'blog_layout',
'section' => 'theme_slug_section_layouts',
'label' => __( 'Blog Layout', '4Piksel' ),
'description' => __( 'Select the layout for the blog.', '4Piksel' ),
'choices' => array(
'one-column' => get_template_directory_uri() . '/images/layouts/1c.png',
'two-column-left' => get_template_directory_uri() . '/images/layouts/2cl.png',
'two-column-right' => get_template_directory_uri() . '/images/layouts/2cr.png',
'three-column' => get_template_directory_uri() . '/images/layouts/3cm.png'
)
)
)
);
}
add_action( 'customize_register', 'theme_slug_register_customizer_control_custom_radio_image' );
function theme_slug_customizer_custom_control_css() {
?>