현재 사용자의 모든 게시물을 표시해야하는 프런트 엔드 대시 보드를 만들고 있습니다. 그래서 저는 주로 모든 국가에 게시물을 표시해야 published
, trashed
하고 pending
. 현재 간단한 쿼리를 사용하고 있지만 게시 된 게시물 만 반환합니다.
$query = array(
'post_type' => 'my-post-type',
'post_author' => $current_user->ID
);
query_posts($query);
누구든지 도울 수 있습니까? 다른 무엇을해야합니까?
WP_Query
pre_get_posts
또는 get_posts
대신 query_posts
. 사용하지 마십시오query_posts
post_status
매개 변수를 예.'post_status' => 'any'
?