| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 30 | public static function editor_init() { |
||
| 31 | ?> |
||
| 32 | <div style="display:none;"> |
||
| 33 | <?php |
||
| 34 | $settings = array( |
||
| 35 | 'tinymce' => array( |
||
| 36 | 'resize' => true, |
||
| 37 | 'wp_autoresize_on' => true, |
||
| 38 | ), |
||
| 39 | ); |
||
| 40 | |||
| 41 | add_filter( 'user_can_richedit', '__return_true' ); |
||
| 42 | wp_editor( '', 'carbon_settings', $settings ); |
||
| 43 | remove_filter( 'user_can_richedit', '__return_true' ); |
||
| 44 | ?> |
||
| 45 | </div> |
||
| 46 | <?php |
||
| 47 | } |
||
| 48 | |||
| 65 |