| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/cosmicindrani.com/wp-content/themes/indrani/ |
Upload File : |
<?php
/**
* The template for displaying all single posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post
*
* @package WordPress
* @subpackage Twenty_Nineteen
* @since Twenty Nineteen 1.0
*/
get_header();
?>
<section class="commonPageTitle" style="background-image: url(<?php echo get_field( 'hero_bg', $post_id ); ?>);">
<div class="container ">
<div class="row">
<div class="col-lg-12">
<h1><?php echo get_the_title(); ?></h1>
<div class="breadcrumb">
<a href="<?php echo esc_url(get_site_url()); ?>">Home</a>
<i class="fa-solid fa-angle-right"></i>
<span><?php echo get_the_title(); ?></span>
</div>
</div>
</div>
</div>
</section>
<section class="blogsDetailSec serviceDetailSec maxwidth1150 mypy100">
<div class="container">
<div class="row">
<div class="col-md-8 mx-auto rightSec">
<div class="card">
<div class="imgBox">
<?php twentynineteen_post_thumbnail(); ?>
</div>
<div class="card-body">
<?php echo the_content(); ?>
</div>
<a class="btn btnRed" href="<?php echo esc_url(get_site_url()); ?>/contact-us/">Book Your Consultation</a>
</div>
</div>
</div>
</div>
</section>
<?php
get_footer();