WordPress – Get posts by query excluding the current month
How would I get custom posts by a WordPress query that excludes the current month? I have a query created that shows the posts published in the current month... <?php $currentYear = date('Y'); $currentMonth = date('n'); $args_current_month = array( 'post_type'…