Conditions | 2 |
Paths | 2 |
Total Lines | 19 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function render_content() { |
||
23 | ?> |
||
24 | <label> |
||
25 | <?php if ( ! empty( $this->label ) ) { ?> |
||
26 | <span class="customize-control-title"><?php echo esc_html( $this->label ); ?></span> |
||
27 | <?php } ?> |
||
28 | <?php |
||
29 | $settings = array( |
||
30 | 'media_buttons' => false, |
||
31 | 'teeny' => true, |
||
32 | ); |
||
33 | |||
34 | $this->filter_editor_setting_link(); |
||
35 | wp_editor( $this->value(), $this->id, $settings ); |
||
36 | ?> |
||
37 | </label> |
||
38 | <?php |
||
39 | do_action( 'admin_footer' ); |
||
40 | do_action( 'admin_print_footer_scripts' ); |
||
41 | } |
||
58 |