HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux WebLive 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wpprotonperinggit/wp-content/themes/voiture/content-search.php
<?php 
global $post;
$thumbsize = !isset($thumbsize) ? voiture_get_config( 'blog_item_thumbsize', 'full' ) : $thumbsize;
$thumb = voiture_display_post_thumb($thumbsize);
$hasthumb = !empty($thumb)?'':' nothumb';
?>
<article <?php post_class('post post-layout post-list-item'.$hasthumb); ?>>
    <div class="flex-middle">
        <?php
            if ( !empty($thumb) ) {
                ?>
                <div class="top-image">
                    <?php voiture_post_categories_first($post); ?>
                    <?php
                        echo trim($thumb);
                    ?>
                 </div>
                <?php
            }
        ?>
        <div class="col-content">
            <?php if( empty($thumb) ) { ?>
                <?php voiture_post_categories_first($post); ?>
            <?php } ?>
            <div class="top-detail-info clearfix">
                <a href="<?php echo esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ); ?>">
                    <i class="flaticon-user"></i>
                    <?php echo get_the_author(); ?>
                </a>
                <span class="comments"><i class="flaticon-chat"></i><?php comments_number( esc_html__('0 Comments', 'voiture'), esc_html__('1 Comment', 'voiture'), esc_html__('% Comments', 'voiture') ); ?></span>
                <span class="date">
                    <i class="flaticon-calendar-1"></i>
                    <?php the_time( get_option('date_format', 'd M, Y') ); ?>
                </span>
            </div>
            <?php if (get_the_title()) { ?>
                <h4 class="entry-title">
                    <?php if ( is_sticky() && is_home() && ! is_paged() ) : ?>
                        <div class="stick-icon"><i class="ti-pin2"></i></div>
                    <?php endif; ?>
                    <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                </h4>
            <?php } ?>
            <div class="description visible-lg"><?php echo voiture_substring( get_the_excerpt(),24, '...' ); ?></div>
            <div class="description hidden-lg"><?php echo voiture_substring( get_the_excerpt(),12, '...' ); ?></div>

            <div class="more-bottom hidden-xs">
                <a href="<?php the_permalink(); ?>" class="btn-readmore flex-middle"><?php echo esc_html__( 'Read More', 'voiture' )?> <span class="plus">
                    <svg width="11" height="11" viewBox="0 0 11 11" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
                    <path d="M5 0H6V11H5V0Z"/>
                    <path d="M4.37113e-08 6L0 5L11 5V6L4.37113e-08 6Z"/>
                    </svg>
                </span></a>
            </div>
        </div>
    </div>
</article>