context['postId'] ) ) { return ''; } $product_id = $block->context['postId']; // Prevent recursive rendering. if ( isset( self::$seen_ids[ $product_id ] ) ) { if ( defined( 'WP_DEBUG' ) && WP_DEBUG && defined( 'WP_DEBUG_DISPLAY' ) && WP_DEBUG_DISPLAY ) { return __( '[product description rendering halted]', 'woocommerce' ); } return ''; } self::$seen_ids[ $product_id ] = true; // Get the product. $product = wc_get_product( $product_id ); if ( ! $product ) { unset( self::$seen_ids[ $product_id ] ); return ''; } // Get the description content. $description = $product->get_description(); /** * This filter is documented in wp-includes/post-template.php. * We follow core/content block to replace ]]> with ]> */ // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment $description = apply_filters( 'the_content', str_replace( ']]>', ']]>', $description ) ); if ( empty( $description ) ) { unset( self::$seen_ids[ $product_id ] ); return ''; } // Remove this product from the seen array. unset( self::$seen_ids[ $product_id ] ); // Add wrapper with block attributes. $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => 'wc-block-product-description' ) ); return sprintf( '
%2$s
', $wrapper_attributes, $description ); } /** * Disable the frontend stylesheet for this block type. It does not have one. * * @return null */ protected function get_block_type_style() { return null; } /** * Disable the frontend script for this block type. It does not have one. * * @param string|null $key The script key. * * @return null */ protected function get_block_type_script( $key = null ) { return null; } }