Skip to content

Instantly share code, notes, and snippets.

@justintadlock
Last active September 5, 2018 17:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save justintadlock/2a9e3312a6fe10e8dc28 to your computer and use it in GitHub Desktop.
Save justintadlock/2a9e3312a6fe10e8dc28 to your computer and use it in GitHub Desktop.
Customize Control: Radio Image
<?php
/**
* The radio image customize control extends the WP_Customize_Control class. This class allows
* developers to create a list of image radio inputs.
*
* Note, the `$choices` array is slightly different than normal and should be in the form of
* `array(
* $value => array( 'url' => $image_url, 'label' => $text_label ),
* $value => array( 'url' => $image_url, 'label' => $text_label ),
* )`
*
* @package Hybrid
* @subpackage Classes
* @author Justin Tadlock <justin@justintadlock.com>
* @copyright Copyright (c) 2008 - 2015, Justin Tadlock
* @link http://themehybrid.com/hybrid-core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
/**
* Radio image customize control.
*
* @since 3.0.0
* @access public
*/
class Hybrid_Customize_Control_Radio_Image extends WP_Customize_Control {
/**
* The type of customize control being rendered.
*
* @since 3.0.0
* @var string
*/
public $type = 'radio-image';
/**
* Displays the control content.
*
* @since 3.0.0
* @access public
* @return void
*/
public function render_content() {
/* If no choices are provided, bail. */
if ( empty( $this->choices ) )
return; ?>
<?php if ( !empty( $this->label ) ) : ?>
<span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
<?php endif; ?>
<?php if ( !empty( $this->description ) ) : ?>
<span class="description customize-control-description"><?php echo $this->description; ?></span>
<?php endif; ?>
<div id="<?php echo esc_attr( "input_{$this->id}" ); ?>">
<?php foreach ( $this->choices as $value => $args ) : ?>
<input type="radio" value="<?php echo esc_attr( $value ); ?>" name="<?php echo esc_attr( "_customize-radio-{$this->id}" ); ?>" id="<?php echo esc_attr( "{$this->id}-{$value}" ); ?>" <?php $this->link(); ?> <?php checked( $this->value(), $value ); ?> />
<label for="<?php echo esc_attr( "{$this->id}-{$value}" ); ?>">
<span class="screen-reader-text"><?php echo esc_html( $args['label'] ); ?></span>
<img src="<?php echo esc_url( sprintf( $args['url'], get_template_directory_uri(), get_stylesheet_directory_uri() ) ); ?>" alt="<?php echo esc_attr( $args['label'] ); ?>" />
</label>
<?php endforeach; ?>
</div><!-- .image -->
<script type="text/javascript">
jQuery( document ).ready( function() {
jQuery( '#<?php echo esc_attr( "input_{$this->id}" ); ?>' ).buttonset();
} );
</script>
<?php }
/**
* Loads the jQuery UI Button script and hooks our custom styles in.
*
* @since 3.0.0
* @access public
* @return void
*/
public function enqueue() {
wp_enqueue_script( 'jquery-ui-button' );
add_action( 'customize_controls_print_styles', array( $this, 'print_styles' ) );
}
/**
* Outputs custom styles to give the selected image a visible border.
*
* @since 3.0.0
* @access public
* @return void
*/
public function print_styles() { ?>
<style type="text/css" id="hybrid-customize-radio-image-css">
.customize-control-radio-image img { border: 4px solid transparent; }
.customize-control-radio-image .ui-state-active img { border-color: #00a0d2; }
</style>
<?php }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment