HEX
Server: Apache/2.4.41 (Amazon) OpenSSL/1.0.2k-fips PHP/5.6.40
System: Linux ip-172-31-40-18 4.14.146-93.123.amzn1.x86_64 #1 SMP Tue Sep 24 00:45:23 UTC 2019 x86_64
User: apache (48)
PHP: 5.6.40
Disabled: NONE
Upload Files
File: //var/www/html/qcr24/quantum/wp-content/themes/quantum/single.php
<?php
/**
 * The template for displaying all single posts and attachments
 *
 * @package WordPress
 * @subpackage quantum
 * @since quantum 1.0
 */
get_header(); ?>



<section id="about_area">
  <div class="container">
    <div class="row">

		<?php
		// Start the loop.
		while ( have_posts() ) : the_post();
		?>

			<div class="col-lg-6 col-md-12">
                <?php the_content(); ?>
            </div>
      
      		<div class="col-lg-6 col-md-12"> 
                <?php $image_url = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'full'); ?>
            	<img src="<?php bloginfo('template_url'); ?>/includes/timthumb/timthumb.php?src=<?php echo $image_url[0]; ?>&zc=2&a=c&q=100&w=540&h=383" width="100%" alt="" class="blog_img"> 
            </div>
            
      		<div class="clearfix"></div>

		<?php
		// End of the loop.
		endwhile;
		?>
        
    </div>
  </div>
</section>


<?php get_footer(); ?>