¿Cómo obtener la identificación de la página actual fuera del ciclo?
-
-
Extraño,¿cómoestás usandoel código,qué hasprobado?¿Quéerroresestá recibiendo?Tal comoestá,es difícil ayudarlo ytodas las respuestas son untiroen la oscuridad.Porfavorpresente una [editar]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
-
Porfavor,envíe un [editar] contodoel código/información adicional.No use la sección de comentariospara cosas que deberíanestaren supregunta :-)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
-
Supublicación ha sidomarcada automáticamente como debaja calidad,porfavor cumpla conmis solicitudes arriba :-)Your post has been automatically flagged as low quality, please comply to my requests above :-)
- 0
- 2014-09-17
- Pieter Goosen
-
no obtengoningúnerror,en realidad quieromostrarelmapa de Googleen mipágina,por lo queelmapano semuestra ...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
-
en header.phpestoy usandoif elseparamostrar de acuerdo con losidentificadores depáginain header.php i am using if else to showing according to page ids
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
Como dije,todaesainformación debeincluirseen supregunta,noen la sección de comentarios.Porfavor [editar] supreguntaAs 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
-
Estimado @Programmer,lea [preguntar].Recibistebanderas automáticas sobre la calidad detupublicación.Tienes sugerencias sobre cómo solucionarlo.Intente superaresopara que supreguntapuedapermanecer abierta yno reciba votosnegativos.Gracias.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
-
Ya aceptó una respuesta,pero la respuesta correcta (posiblemente unapregunta duplicada)está aquí: 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 respuestas
- votos
-
-
heprobadotodas las cosas que seencuentranen googleperonopasónadai have tried all the stuff found on google but nothing happened
- 0
- 2014-09-17
- Muhammad Shoaib Murtaza
-
es difícil saber quées "todas las cosas queencontraste" :) asegúrate de queel códigoestéen unafunción,que llames aesafunción yempieces a depurar haciendoeco de otra cosa antes quetenga que ser visible ...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
-
No obtuve laidentificación usando lafunción,y las "cosas" son `global $ wp_query; $thePostID=$ wp_query->post-> ID; ' `publicación $global; $thePostID=$publicación-> ID; ' `global $ wp_query; $página=$ wp_query->get_queried_object (); $page_id=$página-> 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
-
Estas soluciones le darán un ID depágina solo si se usa antes de que comienceelbucle.Una vez que comienceelbucle,seestablecerá `$post`en cadapublicación delbucle.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
Simplementepuede hacerlo
$page_id = get_queried_object_id();
You can simply do,
$page_id = get_queried_object_id();
-
Esto debemarcarse como la respuesta ...This should be marked as the answer...
- 5
- 2020-01-28
- Lezz
-
Convenido.Esta debería ser la respuesta.Agreed. This should be the answer.
- 2
- 2020-03-08
- CJWEB
-
Definitivamente debería ser la respuesta correcta.Estoytratando de obtener laidentificación actual de unapublicación o unapágina,yestaes la únicaformaen queme da laidentificación correcta sintener que codificar las condiciones.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 ()`es unafunción de Loop,es decir,está destinada a usarse dentro del Loop.Por lotanto,realmenteno aborda la cuestión de "¿Cómo obtener laidentificación de lapágina actualfuera 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
-
¿Cómo obtenerel ID de lapágina actualfuera del ciclo?