HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/xedaptot.vn/wp-content/themes/tokoo/single.php
<?php
/**
 * The template for displaying all single posts.
 *
 * @package storefront
 */

get_header(); 

    do_action( 'tokoo_before_main_content' ); ?>

	<div id="primary" class="content-area">
		<main id="main" class="site-main" role="main">

		<?php while ( have_posts() ) : the_post();

			do_action( 'tokoo_single_post_before' );

			get_template_part( 'templates/contents/content', 'single' );

			do_action( 'tokoo_single_post_after' );

		endwhile; // End of the loop. ?>

		</main><!-- #main -->
	</div><!-- #primary -->

<?php
    do_action( 'tokoo_after_main_content' );

    $layout = tokoo_get_single_post_layout();
    if ( $layout == 'left-sidebar' || $layout == 'right-sidebar' ) {
        do_action( 'tokoo_sidebar', 'blog' );
    }

get_footer();