File: /home/lilleyandgillie.co.uk/public_html/wp-content/themes/it-company/template-parts/single-post.php
<?php
/**
* The template part for displaying post
* @package IT Company
* @subpackage it_company
* @since 1.0
*/
?>
<?php
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
?>
<article class="white-bg">
<h1><?php the_title(); ?></h1>
<?php if( get_theme_mod( 'it_company_single_post_date',true) != '' || get_theme_mod( 'it_company_single_post_author',true) != '' || get_theme_mod( 'it_company_single_post_comment_no',true) != '' || get_theme_mod( 'it_company_single_post_time',true) != '') { ?>
<div class="post-info py-1 px-2">
<?php if( get_theme_mod( 'it_company_single_post_date',true) != '') { ?>
<a href="<?php echo esc_url( get_day_link( $archive_year, $archive_month, $archive_day)); ?>"><span class="entry-date me-2"><i class="<?php echo esc_attr(get_theme_mod('it_company_singlepost_date_icon',"fa fa-calendar pe-2" )); ?>"></i><?php echo esc_html( get_the_date() ); ?></span><span class="screen-reader-text"><?php echo esc_html( get_the_date() ); ?></span></a>
<?php }?>
<?php if( get_theme_mod( 'it_company_single_post_author',true) != '') { ?>
<a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' )) ); ?>"><span class="entry-author me-2"><i class="<?php echo esc_attr(get_theme_mod('it_company_singlepost_author_icon',"fa fa-user pe-2" )); ?>"></i> <?php the_author(); ?></span><span class="screen-reader-text"><?php the_author(); ?></span></a>
<?php }?>
<?php if( get_theme_mod( 'it_company_single_post_comment_no',true) != '') { ?>
<span class="entry-comments me-2"><i class="<?php echo esc_attr(get_theme_mod('it_company_single_post_comment_icon',"fa fa-comments pe-2" )); ?>"></i> <?php comments_number( __('0 Comments','it-company'), __('0 Comments','it-company'), __('% Comments','it-company') ); ?></span>
<?php }?>
<?php if( get_theme_mod( 'it_company_single_post_time',true) != '') { ?>
<span class="entry-comments me-2"><i class="<?php echo esc_attr(get_theme_mod('it_company_single_post_time_icon',"fa fa-clock pe-2" )); ?>"></i> <?php echo esc_html( get_the_time() ); ?></span>
<?php }?>
</div>
<?php }?>
<?php if( get_theme_mod( 'it_company_single_post_image',true) != '' && get_theme_mod('it_company_post_featured_image','in-content') == 'in-content') { ?>
<?php if(has_post_thumbnail()) { ?>
<hr>
<div class="feature-box">
<?php the_post_thumbnail(); ?>
</div>
<hr>
<?php } ?>
<?php }?>
<?php if( get_theme_mod( 'it_company_single_post_category',true) != '') { ?>
<div class="single-post-category mt-3">
<span class="category"><?php esc_html_e('Categories:','it-company'); ?></span>
<?php the_category();?>
</div>
<?php }?>
<div class="entry-content"><?php the_content();?></div>
<?php
if ( is_singular( 'attachment' ) ) {
// Parent post navigation.
the_post_navigation( array(
'prev_text' => _x( '<span class="meta-nav">Published in</span><span class="post-title">%title</span>', 'Parent post link', 'it-company' ),
) );
} elseif ( is_singular( 'post' ) ) {
if( get_theme_mod( 'it_company_single_post_nav',true) != '') {
// Previous/next post navigation.
the_post_navigation( array(
'next_text' => '<span class="meta-nav" aria-hidden="true">' . esc_html(get_theme_mod('it_company_single_post_next_nav_text',__('Next','it-company' )) ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Next post:', 'it-company' ) . '</span> ' .
'',
'prev_text' => '<span class="meta-nav" aria-hidden="true">' . esc_html(get_theme_mod('it_company_single_post_prev_nav_text',__('Previous','it-company' )) ) . '</span> ' .
'<span class="screen-reader-text">' . __( 'Previous post:', 'it-company' ) . '</span> ' .
'',
) );
}
}
echo '<div class="clearfix"></div>'; ?>
<?php if( get_theme_mod( 'it_company_metafields_tags',true) != '') { ?>
<div class="tags mt-3">
<?php
if( $tags = get_the_tags() ) {
foreach( $tags as $content_tag ) {
$sep = ( $content_tag === end( $tags ) ) ? '' : ' ';
echo '<a href="' . esc_url(get_term_link( $content_tag, $content_tag->taxonomy )) . '" class="py-1 px-2 me-2 mb-2"><i class="fas fa-tag me-1"></i>' . esc_html($content_tag->name) . '</a>' . esc_html($sep);
}
} ?>
</div>
<?php }?>
<?php
if( get_theme_mod( 'it_company_single_post_comment',true) != '') {
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}
}?>
<?php if (get_theme_mod('it_company_related_posts') != '') {
get_template_part( 'template-parts/related-post' );
}?>
</article>