2014-11-29 4 views
0

나는 아래 주어진 템플릿 내 주어진 쿼리를 사용합니다. 그러나 "라이브 스포츠 아이템"의 모든 게시물이 템플릿에 표시됩니다. 나는 오늘의 지부를 원한다. 내가 지금 무엇을 할 수 있을까??오늘의 사용자 정의 게시물 Query in Wordpress

<blink> 
    $today = getdate(); 
$args = array(
    'posts_per_page' => -1, 
    'post_type'=> 'live-sports-items', 
    'date_query' => array(
     array(
      'year' => $today['year'], 
      'month' => $today['mon'], 
      'day' => $today['mday'], 
     ), 
    ), 
); 
$my_query = new WP_Query($args); 
while ($my_query->have_posts()) : $my_query->the_post(); 
     ?><li><?php the_title(); ?> <br /></li><?php 
endwhile; ?> 
</blink> 

답변

0

편집 :

시도가 도움이된다면 알려주세요

$args = array(
    'posts_per_page' => -1, 
    'post_type'=> 'live-sports-items', 
    'year' => $today['year'], 
    'monthnum' => $today['mon'], 
    'day' => $today['mday'], 
); 

:-)와

$args = array(
    'posts_per_page' => -1, 
    'post_type'=> 'live-sports-items', 
    'date_query' => array(
     array(
      'year' => $today['year'], 
      'month' => $today['mon'], 
      'day' => $today['mday'], 
     ), 
    ), 
); 

을 변경할 수 있습니다.

+0

결과에 변화가 없습니다 .. –

+0

잠시 전에 나는 위의 코드를 편집했습니다. 어떤 변경 사항을 만들었습니까? – Stimart

+0

만약 내가 통해 ur 편집 된 코드 아니 게시물 쇼를 사용 ... –

관련 문제