File: /home/jkwebsite.my.id/data.jkwebsite.my.id/wp-content/themes/vandana-lite/single.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Vandana_Lite
*/
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<?php
while ( have_posts() ) : the_post();
get_template_part( 'template-parts/content', get_post_type() );
endwhile; // End of the loop.
?>
</main><!-- #main -->
<?php
/**
* @hooked vandana_lite_author - 25
* @hooked vandana_lite_navigation - 30
* @hooked vandana_lite_newsletter_single - 32
* @hooked vandana_lite_related_posts - 35
* @hooked vandana_lite_comment - 45
*/
do_action( 'vandana_lite_after_post_content' );
?>
</div><!-- #primary -->
<?php
get_sidebar();
get_footer();