numberposts, showposts, posts_per_page.뭐가 다른데?
매번 다른 답을 봐요.
이 두 가지 차이점에 대해 믿을 수 있는 답변을 주실 수 있나요?numberposts
,showposts
,posts_per_page
게시물을 조회할 때?
그들은 모두 똑같고 정확히 같은 일을 한다.용도는 약간 다릅니다만
numberposts
,posts_per_page
그리고.showposts
는 모두 에서 유효합니다.numberposts
로 설정되어 있다.posts_per_page
전달되기 전에WP_Query
. 소스코드를 확인합니다.if ( ! empty($r['numberposts']) && empty($r['posts_per_page']) ) $r['posts_per_page'] = $r['numberposts'];
posts_per_page
그리고.showposts
에서 모두 유효합니다.WP_Query
그렇지만numberposts
안 돼. 만약showposts
사용되는 경우로 설정되어 있습니다.posts_per_page
에서WP_Query
class. 소스코드 참조해 주세요.if ( isset($q['showposts']) && $q['showposts'] ) { $q['showposts'] = (int) $q['showposts']; $q['posts_per_page'] = $q['showposts']; }
코덱스에는 이렇게 적혀있지만showposts
감가상각되었지만 핵심에는 감가상각 공지가 아직 없습니다.그러나 그것은 을 위해 대체되었다.posts_per_page
.
당신의 질문에 답하기 위해서posts_per_page
로서 사용하는 것이 가장 좋을 것입니다.numberposts
그리고.showposts
로 설정되어 있다.posts_per_page
에서WP_Query
학급
언급URL : https://stackoverflow.com/questions/34837528/numberposts-showposts-posts-per-page-whats-the-difference
'programing' 카테고리의 다른 글
Mongoose 컬렉션에서 특정 필드를 제외하려면 어떻게 해야 합니까? (0) | 2023.03.01 |
---|---|
Metabox에서 WordPress 갤러리 업로더/실렉터 호출 (0) | 2023.03.01 |
Javascript JSON 어레이 해석 방법 (0) | 2023.03.01 |
각질 재료에서의 사용 방법 (0) | 2023.03.01 |
Angular 1.5 컴포넌트에서 바인딩을 기다리는 방법($scope 없음).$watch) (0) | 2023.03.01 |