2012年3月以降に投稿された投稿のみを呼び出す場所を作成しようとしWP_Query
ています。2012年3月以降の投稿は正常に呼び出すことができますが、「2012年3月以降」は苦労しています。
$current_year = date('2012');
$current_month = date('>3'); // This doesn't work
$current_month = date('3'); // This DOES work
$custom_query = new WP_Query("year=$current_year&monthnum=$current_month&order=ASC&posts_per_page=-1");
私は何か単純なものを見逃していますか、それともこれはもっと複雑にする必要がありますか?