<?php $currentID = get_the_ID(); $my_query = new WP_Query( array('post__not_in' => array($currentID)));
while ( $my_query->have_posts() ) : $my_query->the_post(); ?> <h2><a href="<?php the_permalink(); ?>"><?php the_title() ?></a></h2> <?php the_content(); ?> <?php endwhile; ?>
post__not_in 을 통해 현재 포스트의 id를 제외시켜버리면 된다.
'Wordpress > 워드프레스 노하우' 카테고리의 다른 글
CPT UI, ACF 이용 시 참고 사이트 (0) | 2017.11.08 |
---|---|
워드프레스 멀티사이트 플러그인 비활성화가 안될때 (0) | 2017.10.27 |
엔폴드 mp4 lightbox (0) | 2017.10.20 |
워드프레스 이전작업, 복사작업 후 db 테이블 변경 쿼리 (0) | 2017.09.25 |
Kboard 특정 게시판 리스트 정렬 순서 (0) | 2017.09.07 |
멀티사이트 prefix 디렉토리 설정일때 (0) | 2017.09.06 |
워드프레스 페이지 body에 slug 명 추가하기 (0) | 2017.08.31 |
워드프레스 구글지도 언어변경 (0) | 2017.08.25 |
워드프레스 wp_query 관련해서 (0) | 2017.08.25 |
워드프레스 Dashicons 사용 (0) | 2017.08.25 |