WC_Meta_Box_Product_Short_Description
WC_Meta_Box_Product_Short_Description Class.
Defined (1)
The class is defined in the following location(s).
- /includes/admin/meta-boxes/class-wc-meta-box-product-short-description.php
- class WC_Meta_Box_Product_Short_Description {
- /**
- * Output the metabox.
- *
- * @param WP_Post $post
- */
- public static function output( $post ) {
- $settings = array(
- 'textarea_name' => 'excerpt',
- 'quicktags' => array( 'buttons' => 'em, strong, link' ),
- 'tinymce' => array(
- 'theme_advanced_buttons1' => 'bold, italic, strikethrough, separator, bullist, numlist, separator, blockquote, separator, justifyleft, justifycenter, justifyright, separator, link, unlink, separator, undo, redo, separator',
- 'theme_advanced_buttons2' => '',
- ),
- 'editor_css' => '<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>',
- );
- wp_editor( htmlspecialchars_decode( $post->post_excerpt ), 'excerpt', apply_filters( 'woocommerce_product_short_description_editor_settings', $settings ) );
- }
- }