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/template-posts/single/header-info.php
<?php
$post_format = get_post_format();
global $post;
?>
<div class="text-center entry-content-detail header-info-blog">
    <div class="container">
        <?php if (get_the_title()) { ?>
            <h1 class="detail-title">
                <?php the_title(); ?>
            </h1>
        <?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>
    </div>
    <?php if(has_post_thumbnail()) { ?>
        <div class="entry-thumb">
            <?php
                $thumb = voiture_post_thumbnail();
                echo trim($thumb);
            ?>
        </div>
    <?php } ?>
</div>