File: //old_home_backup/londonsportsforum.org.uk/public_html/wp-content/themes/wallstreet/single.php
<?php get_header(); ?>
<!-- Page Title Section -->
<?php get_template_part('index', 'breadcrumb'); ?>
<!-- /Page Title Section -->
<!-- Blog & Sidebar Section -->
<div class="container" id="content">
<div class="row">
<!--Blog Area-->
<div class="<?php
if (is_active_sidebar('sidebar_primary')) {
echo 'col-md-8';
} else {
echo 'col-md-12';
}
?>" >
<?php
if (have_posts()) {
while (have_posts()) {
the_post();
?>
<div id="post-<?php the_ID(); ?>" <?php post_class('blog-detail-section'); ?>>
<?php if (has_post_thumbnail()) { ?>
<?php $wallstreet_defalt_arg = array('class' => "img-responsive"); ?>
<div class="blog-post-img">
<?php the_post_thumbnail('', $wallstreet_defalt_arg); ?>
</div>
<?php } ?>
<div class="clear"></div>
<div class="blog-post-title">
<div class="blog-post-date"><span class="date"><a href="<?php echo esc_url(get_month_link(get_post_time('Y'), get_post_time('m'))); ?>"><?php echo esc_html(get_the_date()); ?></a></span>
<span class="comment"><i class="fa fa-comment"></i><?php comments_number('0', '1', '%'); ?></span>
</div>
<div class="blog-post-title-wrapper">
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<div class="page-links">' . esc_html__('Page', 'wallstreet'), 'after' => '</div>')); ?>
<div class="blog-post-meta">
<a id="blog-author" href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"><i class="fa fa-user"></i> <?php the_author(); ?></a>
<?php
$wallstreet_tag_list = get_the_tag_list();
if (!empty($wallstreet_tag_list)) {
?>
<div class="blog-tags">
<i class="fa fa-tags"></i><?php the_tags('',', ', ''); ?>
</div>
<?php } ?>
<?php
$wallstreet_cat_list = get_the_category_list();
if (!empty($wallstreet_cat_list)) {
?>
<div class="blog-tags">
<i class="fa fa-star"></i><?php the_category(','); ?>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<!--Blog Author-->
<div class="blog-author">
<div class="media">
<div class="pull-left">
<?php echo get_avatar(get_the_author_meta('ID'), 94); ?>
</div>
<div class="media-body">
<h6><?php the_author(); ?></h6>
<p> <?php the_author_meta('description'); ?> </p>
</div>
</div>
</div>
<!--/Blog Author-->
<?php } ?>
<?php comments_template('', true); ?>
<?php } ?>
</div>
<?php get_sidebar(); ?>
<!--/Blog Area-->
</div>
</div>
<?php
get_footer();