¿Cómo obtener la identificación de publicación de la página principal estática?
2 respuestas
- votos
-
- 2014-10-14
WordPresstiene algunas opciones útiles.Puede obtenerel ID de lapágina deinicio utilizando lo siguiente:
$frontpage_id = get_option( 'page_on_front' );
oel ID delblogmediante:
$blog_id = get_option( 'page_for_posts' );
Aquí hay una lista demuchosparámetros útiles de
get_option
.WordPress has a few useful options. You can get the homepage ID by using the following:
$frontpage_id = get_option( 'page_on_front' );
or the blog ID by using:
$blog_id = get_option( 'page_for_posts' );
-
`get_option (...)` devolverá laidentificación como STRING,si quieres que sea un INTEGER=> do (más rápido)tipo directo cast `(int)`=>ej .: `$frontpage_id=(int)get_option('página_en_frente'); ``get_option(...)` will return the id as STRING, if you want it to be an INTEGER => do (fastest) direct type cast `(int)` => eg.: `$frontpage_id = (int)get_option( 'page_on_front' );`
- 6
- 2016-09-02
- jave.web
-
- 2014-10-14
Deberíapoder utilizar
$front_page_id = get_option( 'page_on_front' );
Devolveráel ID de lapágina queestás usando como lapáginaprincipal detu sitio,o 0 sino se ha configurado.
Codex:
get_option()
You should be able to use
$front_page_id = get_option( 'page_on_front' );
It'll return the ID of the page you're using as your site's front page, or 0 if it hasn't been set.
Codex:
get_option()
Estoytratando de usar lapáginaprincipal como untipopredeterminadopara lasimágenes destacadas (sino seestableceningunaimagen destacada,quiero usar lapáginaprincipal,porejemplo)
Perotengoproblemaspara averiguar cómo obtenerel ID depublicación de lapáginaprincipal demanera segura (para quemi código sigafuncionando cuando alguien cambie lapáginaprincipal)
Sé quepodría codificar una IDen mi código,peroeso se romperá cuando alguien decida usar unnuevoelemento de contenido comopáginaprincipal.
¿Tendría que usar wp-querypara lograresto?Y sies así,¿cuáles unaforma segura de lograresto con wp-query?