| Server IP : 69.30.224.78 / Your IP : 216.73.216.51 Web Server : Microsoft-IIS/10.0 System : Windows NT SERVER 10.0 build 14393 (Windows Server 2016) AMD64 User : IWPD_92(newtechtest) ( 0) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Inetpub/vhosts/newtechtest.in/heartcare.newtechtest.in/wp-content/themes/savior/ |
Upload File : |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package Savior
*/
get_header();
?>
<main id="primary" class="main-area">
<div class="main-wrap">
<?php
while ( have_posts() ) :
the_post();
get_template_part( 'template-parts/content-single', get_post_type() );
if ( 'post' === get_post_type() && savior_get_option( 'blog_single_author_biography', true ) ) {
get_template_part( 'template-parts/author-biography' );
}
// Quick navigation buttons for Prev/Next Posts.
get_template_part( 'template-parts/post-navigation', get_post_type() );
// Display related posts within the same category.
get_template_part( 'template-parts/related-posts', get_post_type() );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
endwhile;
?>
</div>
</main>
<?php
get_sidebar();
get_footer();