Come ottenere l'ID della pagina corrente al di fuori del ciclo?
-
-
Strano,come stai usandoil codice,cosa haiprovato.Qualierrori stai riscontrando.Così com'è,è difficile aiutartie tutte le risposte sono un colponelbuio.Siprega dipresentare una [modifica]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
-
Siprega dipresentare una [modifica] contuttoil codice/leinformazioniextra.Non utilizzare la sezione commentiper cose che dovrebberoesserenellatua domanda :-)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
-
Iltuopost è stato automaticamente contrassegnato come dibassa qualità,perfavore rispetta lemie richieste sopra :-)Your post has been automatically flagged as low quality, please comply to my requests above :-)
- 0
- 2014-09-17
- Pieter Goosen
-
non ricevoerrori,in realtà voglio visualizzare lamappa digoogle sullamiapagina,quindi lamappanon viene visualizzata ...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
-
in header.php sto usando se altropermostrarein base agli ID dellapaginain header.php i am using if else to showing according to page ids
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
Come ho detto,tutte questeinformazioni dovrebbero andarenellatua domanda,nonnella sezione dei commenti.Perfavore [modifica] latua domandaAs 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
-
Gentile @Programmatore,perfavore leggi [chiedi].Hai ricevuto segnalazioni automatiche sulla qualità deltuopost.Hai suggerimenti su come risolverlo.Perfavore,cerca di superarloin modo che latua domandapossa rimanere apertae non ricevere votinegativi.Grazie.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
-
Haigià accettato una risposta,ma la risposta corretta (probabilmente una domanda duplicata) è qui: 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 risposta
- voti
-
-
hoprovatotutte le cosetrovate sugooglemanon è successonientei have tried all the stuff found on google but nothing happened
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
è difficile sapere cosa sia "tutte le cose che haitrovato" :) assicurati cheil codice siain unafunzione,che chiami quellafunzionee inizia afareil debugfacendoeco a qualcos'altroprima che deveessere visibile ...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
-
non ho ricevuto l'ID usando lafunzione,e la "roba" è `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
-
ilprimoera corretto ...first one was correct...
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
Queste soluzioniti daranno l'ID dellapagina solo se utilizzateprima dell'avvio del ciclo.Una volta avviatoil Loop,"$post" verràimpostato aturno su ognipost del Loop.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
Puoi semplicementefarlo,
$page_id = get_queried_object_id();
You can simply do,
$page_id = get_queried_object_id();
-
Questo dovrebbeessere contrassegnato come risposta ...This should be marked as the answer...
- 5
- 2020-01-28
- Lezz
-
Concordato.Questa dovrebbeessere la risposta.Agreed. This should be the answer.
- 2
- 2020-03-08
- CJWEB
-
Sicuramente dovrebbeessere la rispostagiusta.Sto cercando di ottenere l'ID corrente di unpost o di unapagina,e questo è l'unicomodoin cuimi dà l'IDgiusto senza dover codificare le condizioni.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 ()` è unafunzione Loop,ovvero,èpensataperessere utilizzata all'interno del Loop.Pertanto,in realtànon risponde alla domanda "Come ottenere l'ID dellapagina corrente al difuori del ciclo?"`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
-
Come ottenere l'ID dellapagina corrente al difuori del ciclo?