Changeset 20179 for trunk/wp-includes/class-wp-customize-setting.php
- Timestamp:
- 03/15/2012 04:14:05 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize-setting.php
r20136 r20179 70 70 wp_enqueue_script( 'farbtastic' ); 71 71 wp_enqueue_style( 'farbtastic' ); 72 break; 73 case 'upload': 74 wp_enqueue_script( 'wp-plupload' ); 72 75 break; 73 76 } … … 395 398 <?php 396 399 break; 400 case 'upload': 401 ?> 402 <label><?php echo esc_html( $this->label ); ?><br/> 403 <input type="hidden" value="<?php echo esc_attr( $this->value() ); ?>" <?php $this->name(); ?> /> 404 <a href="#" class="button-secondary upload"><?php _e( 'Upload' ); ?></a> 405 <a href="#" class="remove"><?php _e( 'Remove' ); ?></a> 406 </label> 407 <?php 408 break; 397 409 default: 398 410 do_action( 'customize_render_control-' . $this->control, $this );
Note: See TracChangeset
for help on using the changeset viewer.