HEX
Server: Apache/2.4.46 (Unix) PHP/7.4.24
System: Linux dc15-w.ht-systems.ru 2.6.32-042stab142.1 #1 SMP Tue Jan 28 23:44:17 MSK 2020 x86_64
User: srv52894 (52894)
PHP: 7.4.24
Disabled: passthru,shell_exec,system,proc_open,popen,show_source
Upload Files
File: /home/users/srv52894/srv26641/soblazn63/wp-content/themes/brideliness/single.php
<?php  /* The Template for displaying all single posts */

get_header(); ?>

	<main class="site-content<?php if (function_exists('brideliness_main_content_class')) brideliness_main_content_class(); ?>" itemscope="itemscope" itemprop="mainContentOfPage"><!-- Main content -->

			<?php
				// Start the Loop.
				while ( have_posts() ) : the_post();

					// Include the post format-specific template for the content.
					get_template_part( 'content', get_post_format() );

					
					// Single post navigation output
					if (brideliness_get_option('post_pagination')=='on') { brideliness_post_nav(); }
					
					// Related posts output
					if (brideliness_get_option('post_show_related')=='on') { get_template_part( 'part-templates/brideliness-related-posts' );}
					
					// If comments are open or we have at least one comment, load up the comment template.
					if ( comments_open() || get_comments_number() ) {
						comments_template();
					}
				endwhile;
			?>
	</main><!-- end of Main content -->
	
	<?php get_sidebar(); ?>

<?php get_footer(); ?>