수색…


소개

게시물, 페이지 및 사용자 정의 게시물 유형을 쿼리하는 WP_Query. 특정 게시물 및 페이지 또는 사용자 정의 게시물 유형에 대한 목록을 얻을 수 있습니다. WP_Query를 사용하면 기준에 따라 데이터베이스에서 게시물을 가져올 수 있습니다.

최신 게시물 10 개 검색

$args = array(
    'post_type'=>'post',
    'posts_per_page' =>'10'
);
$latest_posts_query = new WP_Query( $args );
if($latest_posts_query->have_posts()) :
while ( $latest_posts_query-> have_posts()) : $latest_posts_query->the_post();
//Get post details here
endwhile;
endif;


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow