| 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/arukustech.com/wp-content/themes/arukus/ |
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_Twenty_One
* @since Twenty Twenty-One 1.0
*/
get_header();
while ( have_posts() ) : the_post();
$pid = get_the_ID();
$feat_image = wp_get_attachment_url( get_post_thumbnail_id($pid) );
?>
<div class="hero_wrapper inner">
<img src="<?php echo $feat_image; ?>" alt="<?php the_title(); ?>">
<div class="container d-flex align-items-center">
<div class="content_area">
<h1><?php the_title(); ?></h1>
<!-- <ul class="bedcrumb d-flex">
<li><?php echo get_field( "banner_heading", $pid ) ?></li>
</ul> -->
</div>
</div>
</div>
<div class="about_area pt pb">
<div class="container">
<div class="row align-items-center">
<div class="col-md-12">
<!-- <div class="common_heading">
<h2><?php the_title(); ?></h2>
</div> -->
<p><?php the_content(); ?></p>
</div>
</div>
</div>
</div>
<?php
endwhile; // End of the loop.
get_footer();