I think it would be better to just do a second query if you don’t have 8 posts for that month, for example:
//get current date
$date = getdate();
//setup args
$args = array(
//basic stuff
'posts_per_page' => -1,
'post_stutus' => 'publish',
//time parameters
'year' => $date['year'],
'month_num' => $date['mon']
);
//create WP_Query
$my_query = new WP_Query;
//execute first WP_Query
$posts = $my_query->query( $args );
//check first WP_Query, update if necessary
if( count( $posts ) < 8 ) {
//update args
unset( $args['year'] );
unset( $args['mon'] );
$args['posts_per_page'] = 8;
//do query
$posts = $my_query->query( $args );
}
//do your loop and such
That’s some rough code that I just banged out real fast, but you get the idea
Related Posts:
- How to limit the number of posts that WP_Query gets?
- Should we trust the post globals?
- Random sort within an already sorted query
- how to get a different html for odd/even posts?
- How to know if get_posts() failed?
- Using $wpdb to query posts with meta value containing current post_id
- Query posts from current year
- WordPress Number of Posts Not Changing With posts_per_page
- I have over 4000 posts, will querying some of them cause performance issues?
- Duplicate posts
- Looping through posts per category gives same posts for each category
- How to show posts rank based on custom field value
- How do I create Comma Separated list of attached image ids?
- How to add posts to wp_query result?
- Trying to put an array into ‘post__in’ => array() query not working
- Order post by year DESC and month ASC
- How can I display a specific user’s first published post?
- Query All users that has post
- Search query – exact post title match
- Sorting posts alphabetical that have single digits
- Check if post exists
- Display page content AFTER a loop of posts
- Get posts by multiple ID’s (query)
- How to start with post number x?
- Exclude posts with empty post_content in wp_query
- Only display a certain number of posts, dependent on how many posts there are available in a query
- Should $found_posts be returned as string in ‘found_posts’ filter hook?
- Query how many items to show in shortcode
- Get posts by name and taxonomy term
- Get Posts that are in the current month or later
- Sticky post appears twice
- How Can I Query a Specific Page From a MultiPage paginated Post
- Get Meta Key Value While Saving Post
- filter RSS feed in URL
- WordPress custom Query for Posts in Category display posts multiple times
- Exclude the first ‘n’ number of posts of a tag from home page?
- How to setup a query to output posts by groups of five?
- How to get posts and comments amount per hour, per year and per month?
- First x post with another template then the others
- Delete all drafts?
- Wrap every month posts in div
- Inner join overrides Advanced Custom Fields plugin’s get_field [closed]
- Counter is skipping post when I still want it visible [closed]
- Can’t get full post title if there a spaces in title
- How to get all post_parents of a post?
- Why posts array is empty?
- Run query_posts if SESSION is empty?
- Display post by click on the link
- Queries take 120+ seconds on my large WordPress site
- Exclude some posts from displaying in wp_query based on some condition
- Related Posts function not working
- WordPress loop not working on static front page
- How to display only one category in a custom post type?
- Adjust the order for returned posts
- Export all posts to import as product items
- get last post’s link with SQL query
- Custom Select Query – Selecting the Year?
- Get current taxonomy and display query accordingly
- Prevent duplicate pages from being added
- Show 10 latest posts only from users with contributors role
- Trying to exclude custom posts based on date, while sorting by custom field
- WordPress, custom post type and posts query help!
- How Can I Always Display A Particular Post First Using WP_Query?
- Return records between two meta datetimes saved as strings
- WordPress Query – Display 5 posts (same post type), each from a given tag
- how to add tags to post in the Loop?
- Merge get_comments & get_posts into a single query
- How to optimize posts query in wordpress
- Check if almost 10 year old – working code is up to date
- Query custom post type custom meta key
- Ignore posts content in the posts queries for internal linking
- How to search through “post title” and “tags” using WP_Query?
- Bulk Post update_post_meta
- Count posts for pagination
- AJAX load more posts not using correct category and repeating the same few posts
- Numbering author posts in posts query
- How to run select query of post with category and tags?
- Sort Events by Venue Title – Sort Post set by related post ids
- Query post for today, if no post get the previous one
- Custom Select Query pagination not working properly
- Display the latest post from some selected authors
- Advanced Post Display/Pagination/Ordering
- Why I obtain this WP_Query strange behavior trying to select posts having a specific tag?
- Removing a post from the results of a WP Query
- Query posts from a specific category and selected tag
- Displaying Results From Custom Taxonomy Query
- Sort post by category using HTML Select tag
- WP_Query retrieve custom posts but not the post showing
- Special Query: Title, Terms, Content – %LIKE%
- Creating pages and getting their values from the database table
- Make division in post_query?
- Display one post randomly from category on home page
- How to set value in Query Loop?
- Wp_query WooCommerce products
- The page that displays Posts on homepage
- query_post or single-[cpt].php?
- Need to show birthday of custom post type(Famous people in this case) in elementor. Date of birth set in custom fields
- Display posts with id equal to relationship value
- Sort Posts Alphabetically Based on Specific Category (Divi)
- Change permalinks in posts via SQL