woocommerce_review_before
The woocommerce_review_before hook
Usage
add_action( 'woocommerce_review_before', 'wp_kama_woocommerce_review_before_action' );
/**
* Function for `woocommerce_review_before` action-hook.
*
* @param $comment
*
* @return void
*/
function wp_kama_woocommerce_review_before_action( $comment ){
// action...
}
- $comment
- -
Where the hook is called
In file: /templates/single-product/review.php
woocommerce_review_before
woocommerce/templates/single-product/review.php 34
do_action( 'woocommerce_review_before', $comment );
Where the hook is used in WooCommerce
woocommerce/includes/wc-template-hooks.php 166
add_action( 'woocommerce_review_before', 'woocommerce_review_display_gravatar', 10 );