%k25u25%fgd5n!
/home/nancmxek/ljsecuredoors.com/wp-content/themes/fauxis/templates/blog-single/single-content.php
<?php
$options = fauxis_WSH()->option();
$allowed_html = wp_kses_allowed_html();
/**
 * Single Post Content Template
 *
 * @package    WordPress
 * @subpackage FAUXIS
 * @author     Template Path
 * @version    1.0
 */
?>
<?php global $wp_query;

$page_id = ( $wp_query->is_posts_page ) ? $wp_query->queried_object->ID : get_the_ID();

$gallery = get_post_meta( $page_id, 'fauxis_gallery_images', true );

$video = get_post_meta( $page_id, 'fauxis_video_url', true );


$audio_type = get_post_meta( $page_id, 'fauxis_audio_type', true );

?>


<div class="blog-details-content mr-20">
	<div class="inner-box">
		<figure class="image-box"><?php the_post_thumbnail(); ?></figure>
		<ul class="post-info clearfix">
			<?php if($options->get('single_post_author' ) ): ?>	
			<li><i class="icon-user"></i><a href="<?php echo esc_url(get_author_posts_url( get_the_author_meta('ID') )); ?>"><?php the_author(); ?></a></li>
			<?php endif; ?>
			<?php if($options->get('single_post_date' ) ): ?>
			<li><i class="icon-calendar_blog"></i><a href="<?php echo get_day_link( get_the_time( 'Y' ), get_the_time( 'm' ), get_the_time( 'd' ) ); ?>"><?php echo get_the_date(); ?></a></li>
			<?php endif; ?>	
			<?php if($options->get('single_post_cat' ) ): ?>
			<li><i class="icon-folder"></i><?php the_category(', '); ?></li>
			<?php endif; ?>
		</ul>
		<div class="text">
			<?php the_content(); ?>
			<div class="clearfix"></div>
			<?php wp_link_pages(array('before'=>'<div class="paginate-links m-b30">'.esc_html__('Pages: ', 'fauxis'), 'after' => '</div>', 'link_before'=>'<span>', 'link_after'=>'</span>')); ?>
		</div>
	</div>
	<?php if($options->get('single_post_share' ) ): ?>
	<?php fauxis_template_load( 'templates/blog-single/social_share.php', compact( 'options', 'data' ) ); ?>
	<?php endif; ?>
	<?php //fauxis_template_load( 'templates/blog-single/author_box.php', compact( 'options', 'data' ) ); ?>
	<?php comments_template(); ?>
	
	
	
	
	
	
	
	
</div>