2016-08-29 2 views
0

다음 기능을 사용하여 'featured'카테고리에서 markerpress 제품을 얻고 제품 이미지를 슬라이드 쇼에 표시합니다.시장press에있는 Wordpress wp_query 오류

$args = array(
    'category_name' => 'featured', 
    'post_type' => 'product' 
); 
$wp_query1 = new WP_Query($args); 
       if (have_posts()) : while ($wp_query1->have_posts()) : $wp_query1->the_post() 

문제는 데이터를 가져 오지 않는 것이 문제입니다. 나는 모든 데이터를 표시하는 아래 함수를 사용해야 만한다.

$wp_query1 = new WP_Query('post_type=product'); 

내가 뭘 잘못하고 있으며 어떻게 제한을 설정하고 데이터를 정렬 할 수 있습니까? 감사.

답변

0
 <?php $args = array(
     'posts_per_page' => 5, 
     'offset'   => 0, 
     'category_name' => 'featured', 
     'orderby'   => 'date', 
     'order'   => 'DESC', 
     'post_type'  => 'product', 
     'post_status'  => 'publish' 
         ); 
     $posts_array = get_posts($args); ?> 
관련 문제