Skip to content

Instantly share code, notes, and snippets.

@fahdi
Created November 3, 2021 00:01
Show Gist options
  • Save fahdi/bb3ccd9c99100f65b82fd7bddca96746 to your computer and use it in GitHub Desktop.
Save fahdi/bb3ccd9c99100f65b82fd7bddca96746 to your computer and use it in GitHub Desktop.
WordPress List all posts from last month
<?php
// WordPress List all posts from last month
$args = array(
'post_type' => 'post',
'posts_per_page' => -1,
'post_status' => 'publish',
'orderby' => 'date',
'order' => 'DESC',
'date_query' => array(
array(
'after' => '1 month ago',
),
),
);
// WP_Query
$the_query = new WP_Query( $args ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<!-- pagination here -->
<!-- the loop -->
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile; ?>
<!-- end of the loop -->
<!-- pagination here -->
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment