사용자 지정 게시물 유형, 분류 및 용어별로 게시물 가져 오기
-
-
좋아,그래서 내가이 모든 것을 생각한 것처럼 보였고 해결책은 정말 간단했습니다.Ok, so it looks like I over thought all of this and the solution was really simple:
- 0
- 2012-03-14
- Rise
-
정답으로 표시하거나 주제를 삭제하십시오.Please mark your answer as correct or delete the topic.
- 0
- 2012-03-14
- AlxVallejo
-
솔루션을 게시하려면 7 시간을 기다려야합니다.I need to wait 7 hours to post the solution :(
- 0
- 2012-03-14
- Rise
-
1 대답
- 투표
-
- 2012-03-22
질문에 대한 답입니다. :)
<?php $args = array( 'post_type'=> 'services', 'areas' => 'painting', 'order' => 'ASC' ); $the_query = new WP_Query( $args ); if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // content goes here endwhile; wp_reset_postdata(); else: endif; ?>
This is the answer to the question :)
<?php $args = array( 'post_type'=> 'services', 'areas' => 'painting', 'order' => 'ASC' ); $the_query = new WP_Query( $args ); if($the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); // content goes here endwhile; wp_reset_postdata(); else: endif; ?>
알겠습니다. "서비스"라는 사용자 지정 게시물 유형이 있습니다. 이 사용자 지정 게시물 유형에는 "영역"이라는 분류가 있으며 해당 분류에는 5 개의 용어가 있습니다.
"서비스"에 10 개의 게시물이 있고 "그림"이라는 용어에 5 개의 게시물이 있고 "사진"이라는 용어에 5 개의 게시물이 더 있다고 가정 해 보겠습니다.
"서비스"에서 게시물을 쿼리 할 수 있어야하지만 10 개의 게시물을 표시하는 대신 "그림"과 관련된 5 개만 표시합니다.
현재는 분류 및 용어로 쿼리 할 수 있지만 용어 별 필터링없이 "서비스"의 모든 게시물이 표시됩니다.
기본적으로 내가 선택한 용어의post_type별로 게시물을 쿼리합니다.
어떤 도움이라도 좋을 것입니다. 감사합니다.
그래서 제가 $ args에서 어떤 포스트 유형에서 포스트를 가져올 지 지정할 수 있다면 해결 될 것입니다.