![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/ligaamadora.com/wp-content/themes/covernews/inc/hooks/blocks/ |
<?php /** * List block part for displaying latest posts in footer.php * * @package CoverNews */ $covernews_latest_posts_title = covernews_get_option('frontpage_latest_posts_section_title'); $covernews_latest_posts_subtitle = covernews_get_option('frontpage_latest_posts_section_subtitle'); $number_of_posts = covernews_get_option('number_of_frontpage_latest_posts'); $all_posts = covernews_get_posts(5); ?> <div class="af-main-banner-latest-posts grid-layout"> <div class="container"> <div class="row"> <div class="widget-title-section"> <?php if (!empty($covernews_latest_posts_title)): ?> <h4 class="widget-title header-after1"> <span class="header-after"> <?php echo apply_filters( 'the_title', $covernews_latest_posts_title); ?> </span> </h4> <?php endif; ?> </div> <div class="row"> <?php if ($all_posts->have_posts()) : while ($all_posts->have_posts()) : $all_posts->the_post(); if (has_post_thumbnail()) { $thumb = wp_get_attachment_image_src(get_post_thumbnail_id(get_the_ID()), 'covernews-medium-square'); $url = $thumb['0']; } else { $url = ''; } global $post; ?> <div class="col-sm-15 latest-posts-grid" data-mh="latest-posts-grid"> <div class="spotlight-post"> <figure class="categorised-article inside-img"> <div class="categorised-article-wrapper"> <div class="data-bg data-bg-hover data-bg-categorised" data-background="<?php echo esc_url($url); ?>"> <a href="<?php the_permalink(); ?>"></a> </div> </div> <?php echo covernews_post_format($post->ID); ?> <div class="figure-categories figure-categories-bg"> <?php covernews_post_categories(); ?> </div> </figure> <figcaption> <h3 class="article-title article-title-1"> <a href="<?php the_permalink(); ?>"> <?php the_title(); ?> </a> </h3> <div class="grid-item-metadata"> <?php covernews_post_item_meta(); ?> </div> </figcaption> </div> </div> <?php endwhile; ?> <?php endif; wp_reset_postdata(); ?> </div> </div> </div> </div>