HEX
Server: LiteSpeed
System: Linux node612.namehero.net 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: dfwparty (1186)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/dfwparty/bizcoach.biz/wp-content/themes/mh-magazine/content-single.php
<?php /* Default template for displaying post content */
 $mh_core_customizer = new MH_Core_Customizer();
 $mh_options = $mh_core_customizer->mh_theme_options();
 ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
	<header class="entry-header clearfix"><?php
		the_title('<h1 class="entry-title">', '</h1>');

		$mh_options['toggle_post_subheading'] = $mh_options['toggle_post_subheading'] ?? 'enable';
		
		if ($mh_options['toggle_post_subheading'] === 'enable') {
			mh_post_subheading();
		}
		mh_post_meta();
		mh_post_header(); ?>
	</header>
	<?php dynamic_sidebar('mh-posts-1'); ?>
	<div class="entry-content clearfix"><?php
		mh_featured_image();

		mh_post_content_top();
		the_content();
		mh_post_content_bottom(); ?>
	</div><?php
	if ($mh_options['tags'] === 'enable') {
		the_tags('<div class="entry-tags clearfix"><i class="fa fa-tag"></i><ul><li>','</li><li>','</li></ul></div>');
	}
	dynamic_sidebar('mh-posts-2'); ?>
</article>