우커머스 상품 후기 별점 숏코드 생성방법

#woocommerce #product review #평점 #리뷰 #shortcode

하기 숏코드를 사용하세요.

[product_rating]

하기 숏코드와 같이 상품번호를 입력하셔도 됩니다.

[product_rating id="123"]

워드프레스 > 관리자 로그인 > 관리자 대시보드 > 외모 > 테마 파일 편집기 > 테마 기능 funtions.php에 아래 코드 삽입할 것

add_shortcode( 'product_rating', 'woocommerce_product_rating_shortcode' );

function woocommerce_product_rating_shortcode( $atts ) {
    global $product;

    $defaults = array(
        'id' => null,
        'average' => true,  // Only fetch the average rating
    );

    $args = shortcode_atts( $defaults, $atts );

    if ( ! $product ) {
        return;
    }

    if ( null !== $args['id'] ) {
        $product = wc_get_product( $args['id'] );
    }

    $rating = $product->get_average_rating(); // Get the average rating

    return $rating;  // Return only the numerical rating
}

댓글 달기

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

위로 스크롤