Comment obtenir l'identifiant de catégorie à partir de l'identifiant de publication?
-
-
j'ai utilisé ce code.maisj'ai obtenui tableauest videglobal $post; $ category_detail=get_the_category ($post-> ID);i used this code . but i got i array is blank global $post; $category_detail=get_the_category( $post->ID );
- 0
- 2014-03-18
- user2307052
-
2 réponses
- votes
-
- 2012-04-07
Vouspouvezessayer ce codepour obtenir l'identifiant de catégorie àpartir de l'identifiant depublication:
global $post; $category_detail=get_the_category( $post->ID );
You can try this code for getting category id from post id:
global $post; $category_detail=get_the_category( $post->ID );
-
- 2012-04-07
Jetez un œil à lafonction wp_get_post_categories .Il renvoie untableau d'ID de catégoriespour un article spécifique.
$post_categories = wp_get_post_categories( $post_id );
Take a look at wp_get_post_categories function. It returns an array of categories' ID for specific post.
$post_categories = wp_get_post_categories( $post_id );
J'aibesoin d'obtenir unidentifiant de catégorie depublication àpartir de l'identifiant depublication (paspour lapublication actuelle). Commentpuis-je?
Merci