루프 외부에서 현재 페이지 ID를 얻는 방법은 무엇입니까?
-
-
이상합니다. 코드를 어떻게 사용하고 있는지,무엇을 시도했는지.어떤 오류가 발생하고 있습니다.현재로서는 당신을 돕기가 어려우며 모든 대답은 어둠 속에서 총알입니다.[편집]을 제출하십시오Strange, how are you using the code, what have you tried. What errors are you getting. As it stands, it is difficult to help you and all answers is a shot in the dark. Please file an [edit]
- 3
- 2014-09-17
- Pieter Goosen
-
` ID;?> ``ID;?> `
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
모든 추가 코드/정보와 함께 [편집]을 제출하십시오.질문에 포함되어야하는 내용에 대해서는 댓글 섹션을 사용하지 마십시오. :-)Please file an [edit] with all the extra code/info. Don't use the comment section for stuff that should be in your question :-)
- 3
- 2014-09-17
- Pieter Goosen
-
귀하의 게시물이 저품질로 자동 표시되었습니다. 위의 요청에 따르십시오. :-)Your post has been automatically flagged as low quality, please comply to my requests above :-)
- 0
- 2014-09-17
- Pieter Goosen
-
오류가 발생하지 않습니다. 실제로 내 페이지에 Google지도를 표시하고 싶어서지도가 표시되지 않습니다.i m not getting any errors, actually i want to display google map on my page, so map is't displaying...
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
header.php에서 페이지 ID에 따라 표시하기 위해 다른 경우 사용하고 있습니다.in header.php i am using if else to showing according to page ids
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
내가 말했듯이 모든 정보는 댓글 섹션이 아니라 질문에 포함되어야합니다.질문을 [편집]하십시오As I said, all of that info should go into your question, not in the comments section. Please [edit] your question
- 1
- 2014-09-17
- Pieter Goosen
-
@Programmer님께,[질문]을 읽어주세요.게시물의 품질에 대한 자동 플래그를 받았습니다.그것을 고치는 방법에 대한 제안이 있습니다.당신의 질문이 계속 열려 있고 당신이 반대표를받지 않도록 그것을 극복하도록 노력하십시오.감사합니다.Dear @Programmer, please read [ask]. You received automatic flags about the quality of your post. You got suggestions how to fix that. Please try to get over that so your question can stay open and you don't receive down votes. Thank you.
- 0
- 2015-01-12
- kaiser
-
이미 답변을 수락했지만 정답 (중복 질문)은 여기에 있습니다. http://wordpress.stackexchange.com/a/109468/21376You've accepted an answer already but the correct answer (arguably a duplicate question) is here: http://wordpress.stackexchange.com/a/109468/21376
- 0
- 2015-08-19
- s_ha_dum
-
3 대답
- 투표
-
-
Google에서 찾은 모든 것을 시도했지만 아무 일도 일어나지 않았습니다.i have tried all the stuff found on google but nothing happened
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
"찾은 모든 것"이 무엇인지 아는 것은 어렵습니다. :) 코드가 함수에 있는지 확인하고,해당 함수를 호출하고 표시되어야하는 다른 것을 에코하여 디버깅을 시작합니다.it's hard to know what "all the stuff you found" is :) make sure the code is in a function, that you call that function and start debuging with echoing something else before which has to be visible...
- 0
- 2014-09-17
- caramba
-
나는 기능을 사용하여 ID를 얻지 못했으며 "물건"은 `global $ wp_query; $thePostID=$ wp_query->post-> ID; ` `global $post; $thePostID=$post-> ID; ` `global $ wp_query; $page=$ wp_query->get_queried_object (); $page_id=$page-> ID; ` `$page_id=get_queried_object_id (); `i did't getting id using function, and the "stuff" is `global $wp_query; $thePostID = $wp_query->post->ID; ` `global $post; $thePostID = $post->ID; ` `global $wp_query; $page = $wp_query->get_queried_object(); $page_id = $page->ID; ` `$page_id = get_queried_object_id(); `
- 2
- 2014-09-17
- Muhammad Shoaib Murtaza
-
첫 번째는 맞았어요 ...first one was correct...
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
이 솔루션은 루프가 시작되기 전에 사용되는 경우에만 페이지 ID를 제공합니다.루프가 시작되면 '$post'가 루프의 각 게시물에 차례로 설정됩니다.These solutions will give you page ID only if used before the Loop starts. Once the Loop starts, `$post` will be set to each post in the Loop in turn.
- 2
- 2015-08-19
- s_ha_dum
-
-
- 2018-05-07
간단히 할 수 있습니다.
$page_id = get_queried_object_id();
You can simply do,
$page_id = get_queried_object_id();
-
이것은 답으로 표시되어야합니다 ...This should be marked as the answer...
- 5
- 2020-01-28
- Lezz
-
동의합니다.이것이 답이되어야합니다.Agreed. This should be the answer.
- 2
- 2020-03-08
- CJWEB
-
확실히 정답이어야합니다.게시물이나 페이지의 현재 ID를 얻으려고하는데 이것이 조건을 하드 코딩하지 않고도 올바른 ID를 제공하는 유일한 방법입니다.Definately it should be the right answer. I'm trying to get the current id of a post or a page, and this is the only way it gives me the right Id without having to hardcode conditions.
- 0
- 2020-05-22
- Felipe Rugai
-
-
`get_the_ID ()`는 루프 함수입니다. 일명 루프 내부에서 사용됩니다.따라서 "루프 외부에서 현재 페이지 ID를 얻는 방법"에 대한 질문은 실제로 해결되지 않습니다.`get_the_ID()` is a Loop function-- aka, it is meant to be used inside the Loop. Therefore, it doesn't really address the question of "How to get current page id outside the loop?"
- 10
- 2015-08-19
- s_ha_dum
-
루프 외부에서 현재 페이지 ID를 얻는 방법