web-dev-qa-db-ja.com

woocommerce-現在の製品カテゴリの最上位のカテゴリを取得するにはどうすればよいですか

私はWoocommerce製品を持っており、そのページに、製品に割り当てられているカテゴリーの最上位カテゴリーを表示する必要があります

- Main Product Category
-- Sub Product Category
--- Category Assigned to product

単一の商品カテゴリで表示できるように、「メイン商品カテゴリ」のIDまたは名前を取得する必要があります。

私はすでに次のことを試しました:

global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );

foreach ($terms as $term) {
$product_cat_id = $term->term_id;

$thetop_parent = woocommerce_get_term_top_most_parent( $product_cat_id , 'product_cat' );

echo $thetop_parent;
}

しかし、それはまったく機能せず、woocomerce_get_termの後にページがロードされないようにします...この時点で何をすべきかわかりません

これについて助けてくれてありがとう.

13
Gman

多くの研究の後、私はこれを解決する方法を見つけました。これが誰かの役に立つことを願っています。

解決:

global $post;
$prod_terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($prod_terms as $prod_term) {

    // gets product cat id
    $product_cat_id = $prod_term->term_id;

    // gets an array of all parent category levels
    $product_parent_categories_all_hierachy = get_ancestors( $product_cat_id, 'product_cat' );  



    // This cuts the array and extracts the last set in the array
    $last_parent_cat = array_slice($product_parent_categories_all_hierachy, -1, 1, true);
    foreach($last_parent_cat as $last_parent_cat_value){
        // $last_parent_cat_value is the id of the most top level category, can be use whichever one like
        echo '<strong>' . $last_parent_cat_value . '</strong>';
    }

}
25
Gman

または多分これ:

$cat = get_the_terms( $product->ID, 'product_cat' );

foreach ($cat as $categoria) {
if($categoria->parent == 0){
   echo $categoria->name;
}
}
25
Mauro

私はこれが古い投稿であることを知っていますが、表示されている現在の製品のルートカテゴリを取得する必要があるという同様の状況がありました。私が考えることができる最も簡単な解決策は、WooCommerceがパンくずリストをどのように処理するかを調べることでした。このコードの断片は、私にとってトリックでした。

if ( is_product() ) {
    global $post;
    $terms = wc_get_product_terms( $post->ID, 'product_cat', array( 'orderby' => 'parent', 'order' => 'DESC' ) );
    if ( ! empty( $terms ) ) {
        $main_term = $terms[0];
        $ancestors = get_ancestors( $main_term->term_id, 'product_cat' );
        if ( ! empty( $ancestors ) ) {
            $ancestors = array_reverse( $ancestors );
            // first element in $ancestors has the root category ID
            // get root category object
            $root_cat = get_term( $ancestors[0], 'product_cat' );
        }
        else {
            // root category would be $main_term if no ancestors exist
        }
    }
    else {
        // no category assigned to the product
    }
}
7
thorne51

ここで私が実際に使用するソリューション

function get_parent_terms($term) {
    if ($term->parent > 0){
        $term = get_term_by("id", $term->parent, "product_cat");
        return get_parent_terms($term);
    }else{
        return $term->term_id;
    }
}
global $wp_query;
$cat_obj = $wp_query->get_queried_object();
$Root_Cat_ID = get_parent_terms($cat_obj);
6
Nicolas GRILLET

これは、私が使用するために開発した機能です。

/**
 * Get product's top category
 * @param int $pid. The product ID
 *
 * @return int. Returns product categories parent ID
 */
 function get_product_top_category($pid) {
    global $wpdb;
    $cat_id = $wpdb->get_var('SELECT b.term_id FROM '.$wpdb->prefix.'term_relationships a, '.$wpdb->prefix.'term_taxonomy b WHERE a.object_id = "'.$pid.'" AND a.term_taxonomy_id = b.term_taxonomy_id AND b.parent = "0" AND b.taxonomy = "product_cat" LIMIT 1');
    return $cat_id;
 }

したがって、これを使用して、現在の製品のトップカテゴリを取得できます。

$top_level_term = get_product_top_category($post->ID);

このコードの制限は、任意の製品の複数の最上位カテゴリを返す可能性があることです。それと戦うために、私はLIMIT 1は、私にとって適切な単一のカテゴリのみを返します。

0

ここに「category_ID」がある場合

/*If you dont have a category ID use this: 
*       $category_ID = get_queried_object()->term_id;
* This will get you the current category_ID 
*/

$termid = get_term($category_ID, 'product_cat' );
    if($termid->parent > 0) 
    {                       // get the parent's hierarchy.
        $cat_hierachy = get_ancestors( $category_ID, 'product_cat' );  
        return end($cat_hierachy); // returns the Level-1 category_ID
    }
    return $category_ID; // Has no parent so return THIS category_ID  Level-1