是否可以通过这种方式在日期和今天之间发布帖子query_posts()
?
例如:所有文章发表以来2012-04-01
谢谢
编辑:
如何在此查询中添加过滤日期?
query_posts( array(
array('post'),
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array('post-format-image')
)
),
'cat' => '-173',
'post_status' => 'publish'
) );
不要使用查询帖子!:)
—
Stephen Harris
不要使用query_posts()。检查此-> wordpress.stackexchange.com/a/1755/7890
—
Morideida'5