PluginProbe
Customify / 2.5.1
Customify v2.5.1
2.10.9 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.7.1 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.0.1 1.6.5 1.7.0 1.7.1 All 77 releases
← All changes | features/customizer/controls/class-Pix_Customize_Textarea_Control.php +2 -1 1.5.02.5.1 View file →
@@ -13,13 +13,14 @@
13 13 *
14 14 * @since 3.4.0
15 15 */
16 16 public function render_content() { ?>
17 +
17 18 <label>
18 19 <?php if ( ! empty( $this->label ) ) : ?>
19 20 <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span>
20 21 <?php endif; ?>
21 - <textarea rows="5" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
22 + <textarea id="<?php echo $this->id; ?>" rows="5" <?php $this->link(); ?>><?php echo esc_textarea( $this->value() ); ?></textarea>
22 23 <?php if ( ! empty( $this->description ) ) : ?>
23 24 <span class="description customize-control-description"><?php echo $this->description; ?></span>
24 25 <?php endif; ?>
25 26 </label>