HEX
Server: LiteSpeed
System: Linux standart108 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: pplae2ji7 (11089)
PHP: 8.3.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/plasmak.com.tr/httpdocs/wp-content/themes/buliten-wp-full/buliten/blog.php
<?php $meta = _WSH()->get_meta();
    $post_thumbnail_id = get_post_thumbnail_id($post->ID);
    $post_thumbnail_url = wp_get_attachment_url($post_thumbnail_id);
?>

<?php
    $format = get_post_format(get_the_id());
    if ($format == 'video') :
?>

<!-- News Block Two -->
<div class="news-block-two">
    <div class="inner-box">
        <?php if (has_post_thumbnail()):?>
        <div class="image">
            <img src="<?php echo esc_url($post_thumbnail_url);?>" alt="<?php esc_attr_e('Awesome Image', 'buliten'); ?>" />
            <a href="<?php echo esc_url(buliten_set($meta, 'video')); ?>" class="lightbox-image overlay-box"><span class="icon flaticon-play-button"></span></a>
        </div>
        <?php endif; ?>
        <div class="lower-content">
            <ul class="post-info">
                <li><span class="icon fa fa-user"></span> <?php the_author(); ?></li>
                <li><span class="icon fa fa-calendar"></span> <?php echo get_the_date(); ?></li>
                <?php if(has_category()) : ?>
                <li><span class="icon fa fa-gear"></span> <?php the_category(', '); ?></li>
                <?php endif; ?>
            </ul>
            <h3><a href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><?php the_title(); ?></a></h3>
            <div class="text"><?php the_excerpt();?></div>
            <a class="read-more" href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><span class="arrow left flaticon-next-7"></span> <?php esc_html_e('Read More', 'buliten'); ?> <span class="arrow right flaticon-next-7"></span></a>
        </div>
    </div>
</div>

<?php elseif ($format == 'gallery') :  ?>

<!-- News Block Two -->
<div class="news-block-two">
    <div class="inner-box">
        <div class="image">
            <?php if (has_post_thumbnail()):?>
            <div class="single-item-carousel owl-carousel owl-theme">
                <?php $gall_images = buliten_set($meta, 'gallery_imgs');
                    if ($gall_images) :
                    foreach ($gall_images as $k => $gal_img) :
                ?>
                <div class="slide">
                    <a class="read-more" href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><img src="<?php echo esc_url(buliten_set($gal_img, 'gallery_image')); ?>" alt="<?php esc_attr_e('Awesome Image', 'buliten'); ?>" /></a>
                </div>
                <?php endforeach; endif; ?>
            </div>
            <?php endif; ?>
        </div>
        <div class="lower-content">
            <ul class="post-info">
                <li><span class="icon fa fa-user"></span> <?php the_author(); ?></li>
                <li><span class="icon fa fa-calendar"></span> <?php echo get_the_date(); ?></li>
                <?php if(has_category()) : ?>
                <li><span class="icon fa fa-gear"></span> <?php the_category(', '); ?></li>
                <?php endif; ?>
            </ul>
            <h3><a href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><?php the_title(); ?></a></h3>
            <div class="text"><?php the_excerpt();?></div>
            <a class="read-more" href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><span class="arrow left flaticon-next-7"></span> <?php esc_html_e('Read More', 'buliten'); ?> <span class="arrow right flaticon-next-7"></span></a>
        </div>
    </div>
</div>

<?php else: ?>

<!-- News Block Two -->
<div class="news-block-two">
    <div class="inner-box">
        <?php if (has_post_thumbnail()): ?>
        <div class="image">
            <a class="read-more" href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><?php the_post_thumbnail('buliten_1170x400'); ?></a>
        </div>
        <?php endif; ?>
        <div class="lower-content">
            <ul class="post-info">
                <li><span class="icon fa fa-user"></span> <?php the_author(); ?></li>
                <li><span class="icon fa fa-calendar"></span> <?php echo get_the_date(); ?></li>
                <?php if(has_category()) : ?>
                <li><span class="icon fa fa-gear"></span> <?php the_category(', '); ?></li>
                <?php endif; ?>
            </ul>
            <h3><a href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><?php the_title(); ?></a></h3>
            <div class="text"><?php the_excerpt();?></div>
            <a class="read-more" href="<?php echo esc_url(get_the_permalink(get_the_id())); ?>"><span class="arrow left flaticon-next-7"></span> <?php esc_html_e('Read More', 'buliten'); ?> <span class="arrow right flaticon-next-7"></span></a>
        </div>
    </div>
</div>

<?php endif; ?>