ID만으로 WP_Query?
1 대답
- 투표
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 의 문서를 참조하세요.
any
should retrieve any type:
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
Note the description of any
in the documentation:
'any' - retrieves any type except revisions and types with 'exclude_from_search' set to true.
For more information, have a look at the documentation of WP_Query.
WP_Query
의 코덱에서 페이지는page_id=7
로,게시물은p=7
로 쿼리 할 수 있습니다.ID로 모든 게시물 유형의 게시물 을 얻을 수있는 방법이 있습니까?id=7
처럼 페이지,게시물 또는 사용자 지정 게시물 유형에 관계없이 얻을 수 있습니까?WP_Query
을 추가하면p=7
이있는WP_Query
만 작동합니다.게시물 유형에 관계없이 ID에서 가져올 수있는 방법이 있습니까?