have_posts와 함께 무한 루프가 발생하는 이유는 무엇입니까?
3 대답
- 투표
-
- 2011-11-20
다음 답변을보십시오. 태그별로 맞춤 게시물 유형 가져 오기
$flagged_stores->the_post()
루프 내에서while
를 사용하실 것 같습니다.Look at this answer: get custom post type by tag
I believe you'd use
$flagged_stores->the_post()
insidewhile
loop.-
+1-잘 발견되었습니다.실제로 읽어야합니다.` have_posts ()) : $flagged_stores->the_post ();?>`-@yuval : 무한 루프가 항상 같은 제목을 표시 했나요?+1 - well spotted; it should indeed read: `have_posts()): $flagged_stores->the_post(); ?>` - @yuval: did the endless loop always show the same title?
- 0
- 2011-11-20
- Michael
-
@Michael 그렇습니다. [`the_post ()`] (http://codex.wordpress.org/Function_Reference/the_post)없이 우편으로 게시물을 찾지 않기 때문입니다.@Michael yes, because you don't seek post by post without [`the_post()`](http://codex.wordpress.org/Function_Reference/the_post)
- 1
- 2011-11-21
- brownian
-
또한`echothe_title ()`을 사용하지 마십시오. 기본적으로 자체적으로 인쇄되므로`the_title ()`일뿐입니다.일반적으로`echoget_the_title ()`과 같이get_로 시작하는 함수와 함께`echo`를 사용합니다.Also don't do `echo the_title()` it's just `the_title()`, as it prints itself by default. Usually you use `echo` with functions starting with get_, like in `echo get_the_title()`
- 0
- 2015-08-28
- aesede
-
- 2011-11-20
'posts_per_page'
대신'limit'
사용- http://codex.wordpress.org/Class_Reference/WP_Query#Parameterstry and use
'posts_per_page'
instead of'limit'
- http://codex.wordpress.org/Class_Reference/WP_Query#Parameters-
여전히 운이 없습니다.다른 아이디어가 있습니까?감사!Still no luck. Any other ideas? Thanks!
- 0
- 2011-11-20
- yuval
-
- 2011-11-20
이게 무한 루프의 원인인지 모르겠지만 WP_Query가 꺼져 있습니다.
$flagged_stores = new WP_Query( array ( 'post_type' => 'store', 'orderby' => 'ID', 'meta_key' => 'flagged', 'posts_per_page' => 10 ) );
'orderby'
및'posts_per_page'
를 업데이트했습니다.I do not know if this is what caused the infinite loop, but your WP_Query is off.
$flagged_stores = new WP_Query( array ( 'post_type' => 'store', 'orderby' => 'ID', 'meta_key' => 'flagged', 'posts_per_page' => 10 ) );
I updated
'orderby'
and'posts_per_page'
.
다음 코드가 있는데 어떤 이유로 인해 무한 루프가 발생합니다. 아무도 무슨 일이 일어나고 있는지 설명해 주시겠습니까?
감사합니다!