| Server IP : 159.223.1.207 / Your IP : 216.73.216.243 Web Server : Apache/2.4.58 (Ubuntu) System : Linux Lamp-OutStaff 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.4.15 Disable Function : NONE MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/wp-content/themes/codeassembly/blocks/ |
Upload File : |
<?php
$current_post_link = get_permalink();
$current_post_title = get_the_title();
$blog_aim = get_field('blog_aim');
$current_post_data = get_the_date( 'jS F, Y');
?>
<div class="col-lg-3">
<a href="<?=$current_post_link?>" class="blog-list-item">
<img class="blog-list-item--img" src="<?php
if(has_post_thumbnail()) {
the_post_thumbnail_url();
} else {
echo '' . get_bloginfo("template_url") . '/assets/images/img-default.png';
}
?>" alt="<?=$current_post_title?>">
<div class="post-info">
<div class="post-info--image">
<?php echo get_avatar('mm') ?>
</div>
<div class="post-info--text">
<span class="article-span article-span--author-archive">by <?php the_author(); ?></span>
<div>
<span class="article-data"><?=$current_post_data?></span>
<span class="article-data article-time-read">
<?php echo reading_time_by_text(); ?>
</span>
</div>
</div>
</div>
<p class="blog-list-item--title"><?=$current_post_title?></p>
</a>
</div>