우커머스 카테고리 상품 개수 숏코드

#WooCommerce #Product #Category #Counter #Shortcode

add_shortcode( 'cat-counter', 'return_current_category_counter' );
 
function return_current_category_counter() {
   $category = is_product_category() ? get_queried_object() : false;
   return $category ? $category->count : false;
}

댓글 달기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

위로 스크롤