| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/aecm.ihu.gr/wp-content/themes/educrat/template-posts/loop/ |
Upload File : |
<?php
global $post;
$thumbsize = !isset($args['thumbsize']) ? educrat_get_config( 'blog_item_thumbsize', 'full' ) : $args['thumbsize'];
$thumb = educrat_display_post_thumb($thumbsize);
?>
<article <?php post_class('post post-layout post-grid'); ?>>
<?php
if ( !empty($thumb) ) {
?>
<div class="top-image">
<?php
echo trim($thumb);
?>
</div>
<?php
}
?>
<div class="col-content">
<?php educrat_post_categories_first($post); ?>
<?php if (get_the_title()) { ?>
<h4 class="entry-title">
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
</h4>
<?php } ?>
<div class="date"><?php the_time( get_option('date_format', 'd M, Y') ); ?></div>
</div>
</article>