/home/glownati/www/wp/wp-content/themes/transport-solutions/template-parts/content-image.php
<div class="blog-grid-layout">
    <div id="post-<?php the_ID(); ?>" <?php post_class('post-box mb-4 wow zoomIn'); ?>>
        <?php if (has_post_thumbnail()) { ?>
            <div class="post-thumbnail mb-2">
                <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
                    <?php the_post_thumbnail(); ?>
                </a>
            </div>
        <?php } ?>
        <?php
        $transport_solutions_archive_element_sortable = get_theme_mod('transport_solutions_archive_element_sortable', array('option1', 'option2', 'option3'));
          foreach ($transport_solutions_archive_element_sortable as $key => $value) {
            if($value === 'option1') { ?>
              <div class="post-meta my-3">
                <i class="far fa-user me-2"></i><a href="<?php echo esc_url(get_author_posts_url(get_the_author_meta('ID'))); ?>"><?php the_author(); ?></a>
                <span class="ms-3"><i class="far fa-comments me-2"></i> <?php comments_number(esc_html__( '0', 'transport-solutions' ),esc_html__( '1', 'transport-solutions' ),esc_html__( '%', 'transport-solutions' ));?><?php esc_html_e( 'comments', 'transport-solutions' ); ?></span>
              </div>
            <?php }
            if($value === 'option2') { ?>
              <h3 class="post-title mb-3 mt-0"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
            <?php }
            if($value === 'option3') { ?>
              <div class="post-content mb-2">
                <?php echo wp_trim_words(get_the_content(), get_theme_mod('transport_solutions_post_excerpt_number', 10)); ?>
            </div>
            <?php }
          }
        ?>
    </div>
</div>