Come ottenere l'ID della categoria dall'ID del post?
-
-
ho usato questo codice.ma ho ottenuto l'array รจ vuotoglobal $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 risposta
- voti
-
- 2012-04-07
Puoiprovare questo codiceper ottenere l'ID della categoria dall'ID delpost:
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
Dai un'occhiata allafunzione wp_get_post_categories .Restituisce un array di ID di categorieper unpost specifico.
$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 );
Hobisogno di ottenere qualsiasi ID di categoria dipost dalpostid (nonper l'attuale). Comeposso?
Grazie