12345678910111213141516171819202122232425 |
- <?php
- $recent = new WP_Query( array(
- 'posts_per_page' => 5,
- 'no_found_rows' => true,
- 'ignore_sticky_posts' => true,
- ) );
- ?>
- <?php if ( $recent->have_posts() ) : ?>
- <div id="front-page-recent-posts" class="recent-posts">
- <div class="recent-posts-header">
- <h2 class="recent-posts-title"><?php echo esc_html_e( 'Recent Posts', 'ixion' ); ?></h2>
- </div><!--.recent-posts-header-->
- <?php
- while ( $recent->have_posts() ) : $recent->the_post();
- get_template_part( 'components/features/recent-posts/content', 'recent-posts' );
- endwhile;
- wp_reset_postdata();
- ?>
- <a class="more-recent-posts" href="<?php echo esc_url( get_permalink( get_option( 'page_for_posts' ) ) ); ?>">
- <?php esc_html_e( 'More Posts', 'ixion' ); ?><span class="meta-nav"><?php esc_html_e( '→', 'ixion' ); ?></span>
- </a>
- </div><!--.recent-posts-->
- <?php endif;
|