web-dev-qa-db-ja.com

WooCommerce-製品ページのカテゴリを取得

WC製品ページでは、カスタムタグを実行できるように、bodyタグにクラスを追加する必要があります。これは私がこのために作成している関数です...

function my_add_woo_cat_class($classes) {

    $wooCatIdForThisProduct = "?????"; //help!

    // add 'class-name' to the $classes array
    $classes[] = 'my-woo-cat-id-' . $wooCatIdForThisProduct;
    // return the $classes array
    return $classes;
}

//If we're showing a WC product page
if (is_product()) {
    // Add specific CSS class by filter
    add_filter('body_class','my_add_woo_cat_class');
}

...しかし、WooCommerce猫IDを取得するにはどうすればよいですか?

33

WC製品は、1つ以上のWCカテゴリーに属さない場合があります。 WCカテゴリIDを1つだけ取得したいとします。

global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id = $term->term_id;
    break;
}

WooCommerceプラグインの「templates/single-product /」フォルダーにあるmeta.phpファイルをご覧ください。

<?php echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', sizeof( get_the_terms( $post->ID, 'product_cat' ) ), 'woocommerce' ) . ' ', '.</span>' ); ?>
68
Box

テーマディレクトリのwoocommerceフォルダーにあるcontent-single-popup.phpからこのコード行を文字通り削除しました。

global $product; 
echo $product->get_categories( ', ', ' ' . _n( ' ', '  ', $cat_count, 'woocommerce' ) . ' ', ' ' );

私が取り組んでいる私のテーマにはwoocommerceが組み込まれているので、これが私のソリューションでした。

4

$product->get_categories()はバージョン3.0から非推奨です!代わりにwc_get_product_category_listを使用してください。

https://docs.woocommerce.com/wc-apidocs/function-wc_get_product_category_list.html

3
Jaydip Nimavat

ありがとうボックス。 MyStile Themeを使用しており、検索結果ページに製品カテゴリ名を表示する必要がありました。子テーマのfunctions.phpにこの関数を追加しました

それが他の人を助けることを願っています。

/* Post Meta */


if (!function_exists( 'woo_post_meta')) {
    function woo_post_meta( ) {
        global $woo_options;
        global $post;

        $terms = get_the_terms( $post->ID, 'product_cat' );
        foreach ($terms as $term) {
            $product_cat = $term->name;
            break;
        }

?>
<aside class="post-meta">
    <ul>
        <li class="post-category">
            <?php the_category( ', ', $post->ID) ?>
                        <?php echo $product_cat; ?>

        </li>
        <?php the_tags( '<li class="tags">', ', ', '</li>' ); ?>
        <?php if ( isset( $woo_options['woo_post_content'] ) && $woo_options['woo_post_content'] == 'excerpt' ) { ?>
            <li class="comments"><?php comments_popup_link( __( 'Leave a comment', 'woothemes' ), __( '1 Comment', 'woothemes' ), __( '% Comments', 'woothemes' ) ); ?></li>
        <?php } ?>
        <?php edit_post_link( __( 'Edit', 'woothemes' ), '<li class="edit">', '</li>' ); ?>
    </ul>
</aside>
<?php
    }
}


?>
2
ZAA.CC