any
모든 유형을 검색해야합니다.
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
any
설명서 의 설명에 유의하십시오 .
'any'- 'exclude_from_search'가 true로 설정된 개정 및 유형을 제외한 모든 유형을 검색합니다.
자세한 정보는 WP_Query 문서를 참조하십시오 .
$query = new WP_Query( array( 'post_type' => 'any', 'post__in' => array( 2, 5, 12, 14, 20 ) ) );
경우 postTypes = page, post, any;