WP_Query solo con l'id?
1 risposta
- voti
any
dovrebbe recuperare qualsiasitipo:
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
Nota la descrizione di any
nella documentazione:
"any": recupera qualsiasitipotranne le revisionie itipi con "exclude_from_search"impostato sutrue.
Per ulterioriinformazioni,dai un'occhiata alla documentazione di WP_Query .
any
should retrieve any type:
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
Note the description of any
in the documentation:
'any' - retrieves any type except revisions and types with 'exclude_from_search' set to true.
For more information, have a look at the documentation of WP_Query.
Nel codiceper
WP_Query
vedo chepuoieseguire una query conpage_id=7
per lepagine o conp=7
peri post.C'è unmodoper ottenere un post di qualsiasitipo dipost in base all'ID?Comeid=7
che lo otterràindipendentemente dalfatto che sitratti di unapagina,di unpost o di untipo dipostpersonalizzato?Possofarfunzionare
WP_Query
conp=7
solo se aggiungo&post_type=customposttype
.C'è unmodoper ottenerlo dall'IDindipendentemente daltipo dipost?