50

私の 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 cat ID を取得するにはどうすればよいですか?

4

6 に答える 6

110

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>' ); ?>
于 2013-03-11T08:51:40.077 に答える
9

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

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

私が取り組んでいる私のテーマには woocommerce が組み込まれているので、これが私の解決策でした。

于 2015-05-29T12:33:10.637 に答える
5

ありがとうボックス。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
    }
}


?>
于 2014-06-20T16:47:17.633 に答える