File: /home/centuryt/public_html/wp-content/themes/emoza-woocommerce/single.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Emoza
*/
get_header();
?>
<main id="primary" class="site-main <?php echo esc_attr( apply_filters( 'emoza_content_class', '' ) ); ?>">
<?php
while ( have_posts() ) :
the_post();
do_action( 'emoza_before_single_post_content' );
get_template_part( 'template-parts/content', 'single' );
do_action( 'emoza_after_single_post_content' );
endwhile; // End of the loop.
?>
</main><!-- #main -->
<?php
do_action( 'emoza_do_sidebar' );
get_footer();