WP_Query par juste l'identifiant?
1 réponses
- votes
any
doit récupérern'importe queltype:
$args = array(
'p' => 42, // ID of a page, post, or custom type
'post_type' => 'any'
);
$my_posts = new WP_Query($args);
Notez la description de any
dans la documentation:
'any' - récupèretouttype sauf les révisionset lestypes avec 'exclude_from_search' défini surtrue.
Pourplus d'informations,consultez la documentation de 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.
Dans le codexpour
WP_Query
,je vois que vouspouvezinterrogerparpage_id=7
pour lespages ouparp=7
pour lesmessages.Existe-t-il unmoyen d'obtenir un message den'importe queltype demessage par ID?Commeid=7
qui l'obtiendra,qu'il s'agisse d'unepage,d'unepublication ou d'untype depublicationpersonnalisé?Jene peuxfairefonctionner
WP_Query
avecp=7
que sij'ajoute&post_type=customposttype
.Existe-t-il unmoyen de l'obtenir àpartir de l'ID quel que soit letype depublication?