File: /home/ls8ejcigc38j/public_html/wp-content/themes/fasttrack/single.php
<?php
/**
* The template for displaying all single posts
*
* @package WordPress
* @subpackage Twenty_Thirteen
* @since Twenty Thirteen 1.0
*/
get_header();
?>
<?php
function string_limit_words($string, $word_limit)
{
$words = explode(' ', $string, ($word_limit + 1));
if(count($words) > $word_limit)
array_pop($words);
return implode(' ', $words);
}
?>
<div class="wrapper">
<div class="wrapper_left">
<div class="content">
<?php while ( have_posts() ) : the_post(); ?>
<h3><?php the_title();?></h3>
<?php /*?><div class="date_content"><?php the_time( get_option( 'date_format' ) ); ?> </div><?php */?>
<?php if(!has_post_thumbnail(27)){?>
<?php if ( has_post_thumbnail() && ! post_password_required()) : ?>
<?php the_post_thumbnail('full');?>
<?php endif; ?>
<? } ?>
<? the_content();?>
<?php endwhile;?>
</div>
</div>
<div class="wrapper_right">
<div class="add">
<h3>Latest Edition</h3>
<?php
$recent = new WP_Query("cat=27&posts_per_page=1&order=DESC"); while($recent->have_posts()) : $recent->the_post();
?>
<a href="<?php the_permalink();?>"> <? the_post_thumbnail(array(400,505));?></a>
<? //$excerpt = get_the_excerpt(); echo string_limit_words($excerpt,20); ?>
<?php endwhile;?>
</div>
<?php get_sidebar(); ?>
</div>
<?php /*?><div class="wrapper_right">
<div class="add">
<img src="<?php echo get_template_directory_uri(); ?>/images/ad.jpg" />
</div>
<div class="tab">
<?php get_sidebar('main'); ?>
</div>
* <div class="event">
<h3>Scheduled Events</h3>
<ul>
<li>Intercollegiate Championship, National Stadium <p>Kingston, jamaica April 1-2</p></li>
<li>Lorem Ipsum is simply of the printing <p>Mona, jamaica April 2</p></li>
<li>dummy text of the printing and typesetting <p>Arima, jamaica April 2</p></li>
<li>Ipsum has been the industry's standard dummy <p>Arima, jamaica April 2</p></li>
</ul>
</div>
<div class="add">
<img src="<?php echo get_template_directory_uri(); ?>/images/ad1.jpg" />
</div>
*
<div class="facebook">
<h3>Find Us on Facebook</h3>
</div>
</div>
<?php */?>
</div>
<?php //get_sidebar(); ?>
<?php get_footer(); ?>