답변:
살펴보면 woocommerce/templates/content-single-product.php
제품 요약이 다른 우선 순위의 후크를 사용하여 구성되어 있음 을 알 수 있습니다.
관련 섹션은 다음과 같습니다.
<?php
/**
* woocommerce_single_product_summary hook
*
* @hooked woocommerce_template_single_title - 5
* @hooked woocommerce_template_single_rating - 10
* @hooked woocommerce_template_single_price - 10
* @hooked woocommerce_template_single_excerpt - 20
* @hooked woocommerce_template_single_add_to_cart - 30
* @hooked woocommerce_template_single_meta - 40
* @hooked woocommerce_template_single_sharing - 50
*/
do_action( 'woocommerce_single_product_summary' );
?>
가격의 우선 순위는 10이고 발췌의 우선 순위는 20입니다. 가격을 바꾸려면 자녀 테마의 작업을 수정하여 우선 순위를 변경하십시오 functions.php
.
이처럼 :
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 10 );
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 20 );