日期查询破坏ajax中的query_posts

时间:2014-01-09 10:16:39

标签: php arrays wordpress jquery-post

我正在尝试运行一个查询,通过ajax传递其变量。

没有date_query,它工作正常,但添加它似乎打破了查询

这个想法是为用户提供按日期过滤的选项

$date =  strtotime($_POST["date"]);
        $myquery = array(
            'tax_query' => array(
                array(
                    'taxonomy' => 'language',
                    'terms' => $lang,
                    'field' => 'slug',
                ),
                array(
                    'taxonomy' => 'region',
                    'terms' => $region,
                    'field' => 'slug',
                ),
                array(
                    'taxonomy' => 'category',
                    'terms' => $category,
                    'field' => 'slug',
                )
            ),
            'date_query' => array(
                    'year' => date('Y', $date),
                    'month' => date('m', $date),
                    'day' => date('d', $date),
            )
        );
    wp_reset_query();

    query_posts($myquery);;

0 个答案:

没有答案