- Timestamp:
- 06/02/2024 02:07:21 AM (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/classes/class-bp-customizer-control-range.php
r10475 r13893 16 16 */ 17 17 class BP_Customizer_Control_Range extends WP_Customize_Control { 18 18 19 /** 20 * Control type. 21 * 19 22 * @var string 20 23 */ … … 47 50 <?php endif; ?> 48 51 49 <input type="range" id="<?php echo esc_attr( "{$id}-range" ); ?>" <?php $this->link(); $this->input_attrs(); ?> value="<?php echo esc_attr( $this->value() ); ?>" /> 52 <input type="range" id="<?php echo esc_attr( "{$id}-range" ); ?>" 53 <?php 54 $this->link(); 55 $this->input_attrs(); 56 ?> 57 value="<?php echo esc_attr( $this->value() ); ?>" /> 50 58 <output for="<?php echo esc_attr( "{$id}-range" ); ?>"><?php echo esc_html( $this->value() ); ?></output> 51 59 … … 53 61 <p><span class="description customize-control-description"><?php echo esc_html( $this->description ); ?></span></p> 54 62 <?php endif; ?> 55 </li><?php 63 </li> 64 <?php 56 65 } 57 66 }
Note: See TracChangeset
for help on using the changeset viewer.