Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public static function output( $post ) { |
||
22 | |||
23 | $settings = array( |
||
24 | 'textarea_name' => 'excerpt', |
||
25 | 'quicktags' => array( 'buttons' => 'em,strong,link' ), |
||
26 | 'teeny' => true, |
||
27 | 'media_buttons' => false, |
||
28 | 'tinymce' => array( |
||
29 | 'theme_advanced_buttons1' => 'bold,italic,strikethrough,separator,justifyleft,justifycenter,justifyright,separator,link,unlink,separator,undo,redo,separator', |
||
30 | 'theme_advanced_buttons2' => '', |
||
31 | ), |
||
32 | 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>', |
||
33 | ); |
||
34 | |||
35 | wp_editor( htmlspecialchars_decode( $post->post_excerpt, ENT_QUOTES ), 'excerpt', apply_filters( 'getpaid_description_editor_settings', $settings ) ); |
||
36 | } |
||
38 |