File: /storage/v4513/ctoivenusin/public_html/wp-content/themes/ivenusp2/single.php
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package WordPress
* @subpackage iVenusP2
* @since 1.0.0
*/
get_header();
$post_id = get_the_ID();
$featured_img_url = get_the_post_thumbnail_url($post_id,'full');
?>
<main class="main">
<section>
<div class="container">
<div class="col-sm-12">
<h3 class="title text-uppercase"><?php echo $post_title; ?></h3>
</div>
<div class="clearfix"></div>
<div class="col-sm-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post();
the_content();
endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
</div>
</div>
</section>
</main>
<?php get_footer(); ?>