“coming soon” placeholder blog posts?
You can add a filter to ‘loop_start’, count how may posts you have and inject the needed number of “fake” posts that are intances of WP_Post not having a reference in DB. add_filter( ‘loop_start’, function( $query ) { $module = $query->post_count % 6; $to_fill = $module === 0 ? 0 : 6 – $module ; … Read more