File: /home/dmstechonline/public_html/wp-content/plugins/xolio-core/include/template/single-portfolio.php
<?php
/**
* The main template file
*
* @package WordPress
* @subpackage tpcore
*/
get_header();
?>
<div class="cs-height_150 cs-height_lg_80"></div>
<?php
if( have_posts() ):
while( have_posts() ): the_post();
?>
<div class="container">
<div class="cs-portfolio_details">
<img src="<?php echo get_the_post_thumbnail_url( get_the_ID(), ''); ?>" alt="<?php echo esc_attr__('Image','tpcore') ?>" class="cs-radius_15 w-100">
<div class="cs-height_90 cs-height_lg_40"></div>
</div>
</div>
<?php the_content(); ?>
<?php
endwhile; wp_reset_query();
endif;
?>
<?php get_footer(); ?>