File: /home/roshanchandy/public_html/petiva/wp-content/themes/petiva/template-parts/content.php
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package petiva
*/
if ( is_single() ) : ?>
<article id="post-<?php the_ID();?>" <?php post_class( 'postbox__item format-general mb-50' );?>>
<?php if ( has_post_thumbnail() ): ?>
<div class="postbox__thumb">
<?php the_post_thumbnail( 'full', ['class' => 'img-responsive'] );?>
</div>
<?php endif;?>
<div class="postbox__content">
<!-- blog meta -->
<?php get_template_part( 'template-parts/blog/blog-meta' ); ?>
<h3 class="postbox__title">
<?php the_title();?>
</h3>
<div class="postbox__text">
<?php the_content();?>
<?php
wp_link_pages( [
'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'petiva' ),
'after' => '</div>',
'link_before' => '<span class="page-number">',
'link_after' => '</span>',
] );
?>
</div>
<div class="blog_tags d-flex align-items-center justify-content-between gap-lg-6 gap-4 flex-wrap mb-lg-10 mb-md-8 mb-6 ">
<?php print blog_petiva_get_tag();?>
<?php print petiva_get_social(); ?>
</div>
</div>
</article>
<?php else: ?>
<article id="post-<?php the_ID();?>" <?php post_class( 'postbox__item format-general mb-50' );?>>
<?php if ( has_post_thumbnail() ): ?>
<div class="postbox__thumb">
<a href="<?php the_permalink();?>">
<?php the_post_thumbnail( 'full', ['class' => 'img-responsive'] );?>
</a>
</div>
<?php endif; ?>
<div class="postbox__content">
<!-- blog meta -->
<?php get_template_part( 'template-parts/blog/blog-meta' ); ?>
<h3 class="postbox__title">
<a href="<?php the_permalink();?>"><?php the_title();?></a>
</h3>
<div class="postbox__text">
<?php the_excerpt();?>
</div>
<!-- blog btn -->
<?php get_template_part( 'template-parts/blog/blog-btn' ); ?>
</div>
</article>
<?php endif;?>