날짜와 오늘 사이에 게시물을 게시하는 방법 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
—
moraleida