PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/footcrew.com/wp-content/plugins/WP-AMP/templates/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/footcrew.com/wp-content/plugins/WP-AMP/templates/recent-posts.php |
<?php /** * This template can be overridden by copying it to yourtheme/wp-amp/recent-posts.php. * * @var $this AMPHTML_Template * @version 9.3.0 */ $count = $this->get_posts_count( 'recent' ); $recent = $this->get_recent_posts( $count ); $show_thumbnail = $this->get_posts_thumbnail( 'recent' ); if ( $recent && $recent->have_posts() ) : ?> <aside> <h3><?php echo $this->get_posts_title( 'recent' ); ?></h3> <ul class="amphtml-recent-posts-list<?php echo $show_thumbnail ? ' show-thumbs' : '' ?>"> <?php while ( $recent->have_posts() ) : $recent->the_post(); ?> <?php $link = get_permalink( get_the_id() ); ?> <li> <?php if ( $show_thumbnail && has_post_thumbnail( get_the_ID() ) ) : ?> <a href="<?php echo $this->get_amphtml_link( $link ); ?>" title="<?php the_title_attribute(); ?>"> <?php $this->the_post_thumbnail_tpl( get_the_ID() ); ?> </a> <?php endif; ?> <a href="<?php echo $this->get_amphtml_link( $link ); ?>" title="<?php the_title_attribute(); ?>"> <?php the_title( '<h4>', '</h4>' ); ?> </a> </li> <?php endwhile; ?> </ul> </aside> <?php endif; wp_reset_query();