Wordpress查询两周后

时间:2012-09-27 16:04:36

标签: mysql wordpress

以下查询可以追溯到一周,但我怎么做才能回到两个:

$columnists=new WP_Query(array('showposts'=>3, 'cat'=>66622, 'orderby'=>'rand','w'=>date('W'),'year'=>date('Y')));

1 个答案:

答案 0 :(得分:1)

你试过这个吗?

'w'=>date('W')-1 

而不是

'w'=>date('W')

如果它不起作用,这里是WP_Query函数的文档 http://codex.wordpress.org/Class_Reference/WP_Query