HEX
Server: LiteSpeed
System: Linux vps338 6.12.0-211.34.1.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 15 07:56:02 EDT 2026 x86_64
User: ondernemer (1054)
PHP: 8.3.32
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/ondernemer/public_html/wp-content/themes/dt-the7/single.php
<?php
/**
 * The Template for displaying all single posts.
 *
 * @since   1.0.0
 *
 * @package The7\Templates
 */

defined( 'ABSPATH' ) || exit;

get_header( 'single' );
?>

<?php
if ( have_posts() ) {
	while ( have_posts() ) {
		the_post();

		get_template_part( 'header-main' );

		if ( presscore_is_content_visible() ) {
			do_action( 'presscore_before_loop' );
			?>

			<div id="content" class="content" role="main">

				<?php if ( post_password_required() ) { ?>

					<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

						<?php
						do_action( 'presscore_before_post_content' );
						the_content();
						do_action( 'presscore_after_post_content' );
						?>

					</article>

					<?php
				} else {
					get_template_part( 'content-single', str_replace( 'dt_', '', get_post_type() ) );
				}

				comments_template( '', true );
				?>

			</div><!-- #content -->

			<?php
			do_action( 'presscore_after_content' );
		}
	}
}

get_footer();
?>