File "single.php"

Full Path: /home/leadltht/fastlinkinternet.com/themes/envo-royal/single.php
File size: 918 bytes
MIME-type: text/x-php
Charset: utf-8

<?php get_header(); ?>

<!-- start content container -->
<div class="row single-post">      
    <article class="col-md-<?php envo_royal_main_content_width_columns(); ?>">
		<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>                         
				<div <?php post_class( 'single-post-content' ); ?>>
					<?php
					do_action( 'envo_royal_single_before' );
					$contents = get_theme_mod( 'single_layout', array( 'content', 'cats_tags', 'nav' ) );

					// Loop parts.
					foreach ( $contents as $content ) {
						do_action( 'envo_royal_single_' . $content );
					}
					do_action( 'envo_royal_single_after' );
					?>
				</div>
			<?php endwhile; ?>        
		<?php else : ?>            
			<?php get_template_part( 'content', 'none' ); ?>        
		<?php endif; ?>    
    </article> 
	<?php do_action( 'envo_royal_sidebar' ); ?>
</div>
<!-- end content container -->

<?php
get_footer();