본문 바로가기

솔루션/워드프레스

워드프레스 특정 카테고리 포스트 리스트로 출력시키기 - query_posts()

사이트 예제

 

// The Query

query_posts( $args );

 

// The Loop

while ( have_posts() ) : the_post();

    echo '

<li>';

    the_title();

    echo '</li>

 

';

endwhile;

 

// Reset Query

wp_reset_query();


-------------------------------------------------------------------------


활용

 

query_posts('cat=2');

-> cat category

2 카테고리의 ID

 

 

아이디어 제공 :

https://kopress.kr/topic/%EC%A7%88%EB%AC%B8%ED%8E%98%EC%9D%B4%EC%A7%80%EB%B3%84-%ED%8A%B9%EC%A0%95-%EC%B9%B4%ED%85%8C%EA%B3%A0%EB%A6%AC-%EC%B6%9C%EB%A0%A5-%EB%B0%A9%EB%B2%95/

 

참고 사이트 :

https://developer.wordpress.org/reference/functions/query_posts/