Untitled
unknown
php
3 years ago
321 B
9
Indexable
function my_get_category( $id ) {
$term = get_terms( array(
'taxonomy' => 'product_cat',
'hide_empty' => false,
'meta_query' => array(
array(
'key' => '_category_id',
'value' => $id,
'compare' => '='
)
)
)
);
if ( ! empty( $term ) ) {
return $term[0]->slug;
}
}Editor is loading...