Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | protected function render_content() { |
||
37 | if ( ! empty( $this->label ) ) : ?> |
||
38 | <label class="customize-control-title"> |
||
39 | <?php echo esc_html( $this->label ); ?> |
||
40 | </label> |
||
41 | <?php endif; ?> |
||
42 | <?php if ( ! empty( $this->description ) ) : ?> |
||
43 | <span class="description customize-control-description"> |
||
44 | <?php echo esc_html( $this->description ); ?> |
||
45 | </span> |
||
46 | <?php endif; |
||
47 | } |
||
48 | } |
||
50 |