1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <?php $current_year = date('Y', current_time('timestamp')); if(!$_GET['month']){ $current_month = date('m', current_time('timestamp')); $display_month = date('F',current_time('timestamp')); }else{ $current_month = $_GET['month']; $thedate=strtotime($current_year.'-'.$current_month); $display_month = date('F',$thedate); $display_year = date('Y', $thedate); } $cat_id=4; $args = array( 'orderby' => 'date', 'post_type' => 'post', 'cat' => $cat_id, 'posts_per_page' => 1, 'date_query' => array( array( 'year' => $current_year, 'month' => $current_month, ), ) ); ?> |