File: /home/bohousj/medal/wp-content/themes/choicy/post-formats/content-related-post.php
<?php
$choicy_enable_blog_navigation = cs_get_option('choicy_enable_blog_navigation');
$choicy_prev_post = get_previous_post();
$choicy_next_post = get_next_post();
if( $choicy_enable_blog_navigation == true ) {
if(!empty(get_previous_post() || get_next_post()) ) {
?>
<div class="tx-nextPrev-post-wrapper blog-next-btn">
<div class="btn-item">
<a href="<?php print get_the_permalink($choicy_prev_post); ?>" class="main-img img-cover">
<?php
$choicy_prev_post_img = get_the_post_thumbnail_url( $choicy_prev_post, 'full' );
if( !empty($choicy_prev_post_img) ) {
?>
<img src="<?php print esc_url($choicy_prev_post_img); ?>" alt="">
<?php
}
?>
<div class="arrow-btn">
<i class="fas fa-chevron-left"></i>
</div>
</a>
<div class="content-wrap">
<span class="chy-heading-1 date">
<?php
$choicy_prev_post_date = get_the_date( get_option( 'date_format' ), $choicy_prev_post );
print esc_html($choicy_prev_post_date);
?>
</span>
<h3 class="chy-heading-1 title">
<a href="<?php print get_the_permalink($choicy_prev_post); ?>" aria-label="blog">
<?php print get_the_title($choicy_prev_post); ?>
</a>
</h3>
</div>
</div>
<div class="btn-item">
<a href="<?php print get_the_permalink($choicy_next_post); ?>" class="main-img img-cover">
<?php
$choicy_next_post_img = get_the_post_thumbnail_url( $choicy_next_post, 'full' );
if( !empty($choicy_next_post_img) ) {
?>
<img src="<?php print esc_url($choicy_next_post_img); ?>" alt="">
<?php
}
?>
<div class="arrow-btn">
<i class="fas fa-chevron-left"></i>
</div>
</a>
<div class="content-wrap">
<span class="chy-heading-1 date">
<?php
$choicy_next_post_date = get_the_date( get_option( 'date_format' ), $choicy_next_post );
print esc_html($choicy_next_post_date);
?>
</span>
<h3 class="chy-heading-1 title">
<a href="<?php print get_the_permalink($choicy_next_post); ?>" aria-label="blog">
<?php print get_the_title($choicy_next_post); ?>
</a>
</h3>
</div>
</div>
</div>
<?php
}
}
?>