| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/novablog/includes/main-menu/ |
Upload File : |
<?php
/**
* Template for displaying posts inside mega menus
* @package novablog
* @since 1.0.0
*/
global $post;
$thumb = get_post_thumbnail_id();
$img_url = wp_get_attachment_url( $thumb,'full');
$img_width = 255;
$img_height = 220;
$img = aq_resize( $img_url, $img_width, $img_height, true, true, true );
?>
<div class="col-xs-3 col-sm-3 col-md-3">
<article class="post type-<?php echo get_post_format(); ?>">
<figure class="featured-thumbnail thumbnail large">
<a href="<?php esc_url(the_permalink()); ?>" title="<?php esc_attr(the_title()); ?>">
<?php if(has_post_format('video')){
echo '<div class="cover-video"></div>';
} ?>
<img src="<?php echo esc_url($img); ?>" width="<?php echo esc_attr($img_width); ?>" height="<?php echo esc_attr($img_height); ?>" alt="<?php esc_attr(the_title());?>" /></a>
</figure>
<p class="post-title"><a href="<?php esc_url(the_permalink()); ?>" title="<?php esc_attr(the_title()); ?>"><?php esc_attr(the_title()); ?></a></p>
<?php if (novablog_getVariable('post_date')=='yes') { ?>
<span class="post-date date"><?php novablog_time_ago(); ?></span>
<?php } ?>
</article>
</div>