製品アーカイブページで現在の製品カテゴリIDを取得する方法
2 回答
- 投票
-
-
このエラーが発生します:注意:未定義のプロパティ:file.phpのWP_Post_Type :: $term_idit gives this error: Notice: Undefined property: WP_Post_Type::$term_id in file.php
- 0
- 2018-04-25
- sheetal
-
-
- 2018-05-23
Funcionaperfeitamente!
<?php global $post; $terms = get_the_terms( $post->ID, 'product_cat' ); foreach ( $terms as $term ) { $product_cat_id = $term->term_id; if( $term = get_term_by( 'id', $product_cat_id, 'product_cat' ) ){echo $term->name;} break; }?>
Funciona perfeitamente!
<?php global $post; $terms = get_the_terms( $post->ID, 'product_cat' ); foreach ( $terms as $term ) { $product_cat_id = $term->term_id; if( $term = get_term_by( 'id', $product_cat_id, 'product_cat' ) ){echo $term->name;} break; }?>
製品アーカイブページを表示している場合、製品アーカイブページで現在の製品カテゴリIDを取得するにはどうすればよいですか.私はこれを使用していますが、結果はありません: