File "render.php"

Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/layouts/sp-content/render.php
File size: 597 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use XTS\Modules\Layouts\Main;

if ( ! function_exists( 'wd_gutenberg_single_product_content' ) ) {
	function wd_gutenberg_single_product_content( $block_attributes ) {
		if ( wp_is_serving_rest_request() ) {
			return '';
		}

		ob_start();

		Main::setup_preview();

		?>
			<div id="<?php echo esc_attr( wd_get_gutenberg_element_id( $block_attributes ) ); ?>" class="wd-single-content wd-entry-content<?php echo esc_attr( wd_get_gutenberg_element_classes( $block_attributes ) ); ?>">
				<?php the_content(); ?>
			</div>
		<?php
		Main::restore_preview();

		return ob_get_clean();
	}
}