Come ottenere l'ID della categoria del post corrente?
4 risposta
- voti
-
- 2018-11-10
function catName($cat_id) { $cat_id = (int) $cat_id; $category = &get_category($cat_id); return $category->name; } function catLink($cat_id) { $category = get_the_category(); $category_link = get_category_link($cat_id); echo $category_link; } function catCustom() { $cats = get_the_category($post->ID); $parent = get_category($cats[1]->category_parent); if (is_wp_error($parent)){ $cat = get_category($cats[0]); } else{ $cat = $parent; } echo '<a href="'.get_category_link($cat).'">'.$cat->name.'</a>'; }
USA
<a href="<?php catLink(1); ?>"> <?php catName(1); ?>
function catName($cat_id) { $cat_id = (int) $cat_id; $category = &get_category($cat_id); return $category->name; } function catLink($cat_id) { $category = get_the_category(); $category_link = get_category_link($cat_id); echo $category_link; } function catCustom() { $cats = get_the_category($post->ID); $parent = get_category($cats[1]->category_parent); if (is_wp_error($parent)){ $cat = get_category($cats[0]); } else{ $cat = $parent; } echo '<a href="'.get_category_link($cat).'">'.$cat->name.'</a>'; }
USE
<a href="<?php catLink(1); ?>"> <?php catName(1); ?>
-
Benvenutonel sito,@swibo.Questa rispostapotrebbe usare unpo 'più di chiarezza.Forse spiega cosa staifacendoe perché,così comeperché questo risponde alla domanda originale.Welcome to the site, @swibo. This answer could use a little more clarity. Perhaps explain what you're doing and why, as well as why this answers the original question.
- 1
- 2018-11-10
- butlerblog
-
- 2016-11-30
Quando si utilizza lafunzione
get_the_category()
per ottenerei dati della categoria,restituisce l'array dell'oggetto quindi ènecessario accedere all'id della categoriapassando la chiave dell'array,come questa$postcat[0]->term_id
global $post; $postcat = get_the_category( $post->ID ); // try print_r($postcat) ; if ( ! empty( $postcat ) ) { echo esc_html( $postcat[0]->name ); }
Spero che questo aiuto!
When you use
get_the_category()
function to get category's data, it return the array of object so you have to access category id by passing array key, like this$postcat[0]->term_id
global $post; $postcat = get_the_category( $post->ID ); // try print_r($postcat) ; if ( ! empty( $postcat ) ) { echo esc_html( $postcat[0]->name ); }
Hope this help!
-
- 2018-07-28
Unmiglioramento alla risposta di Govind Kumar,poichéil richiedente chiede l ' ID categoria ,nonil nome della categoria .Ilnome dellaproprietà dell'oggettoper l'ID categoria è " cat_ID ".
// get cat ID for general view $postcat = get_the_category( $query->post->ID ); if ( ! empty( $postcat ) ) { echo $postcat[0]->cat_ID; }
An improvement to Govind Kumar answer, as the asker askes about category ID, not the category name. The property name of the object for category ID is "cat_ID".
// get cat ID for general view $postcat = get_the_category( $query->post->ID ); if ( ! empty( $postcat ) ) { echo $postcat[0]->cat_ID; }
-
- 2018-07-07
global $post; $postcat=get_the_category ($post-> ID); if (!empty ($postcat)) { foreach ($postcat as $nameCategory) { echo $nameCategory->name. ''; } }?>
global $post; $postcat = get_the_category( $post->ID ); if ( ! empty( $postcat ) ) { foreach ($postcat as $nameCategory) { echo $nameCategory->name .' '; } }?>
-
Non risponde alla domanda.Il richiedente voleva l'* ID * della categoria,non unelenco dinomi stampato.Doesn't answer the question. Asker wanted the *ID* of the category, not a list of names printed out.
- 0
- 2018-07-08
- Jacob Peattie
Hobisogno di ottenere l'ID della categoria delpost corrente al difuori del ciclo.Perprima cosa ottengo la categoriain base all'ID delpost:
Ora come ottenere l'ID della categoria?Hoprovato:
$cat_id = $postcat->term_id;
manonfunziona.