woocommerce_reviews_title filter-hookWC 1.0

Usage

add_filter( 'woocommerce_reviews_title', 'wp_kama_woocommerce_reviews_title_filter', 10, 3 );

/**
 * Function for `woocommerce_reviews_title` filter-hook.
 * 
 * @param  $reviews_title 
 * @param  $count         
 * @param  $product       
 *
 * @return 
 */
function wp_kama_woocommerce_reviews_title_filter( $reviews_title, $count, $product ){

	// filter...
	return $reviews_title;
}
$reviews_title
-
$count
-
$product
-

Where the hook is called

In file: /templates/single-product-reviews.php
woocommerce_reviews_title
woocommerce/templates/single-product-reviews.php 35
echo apply_filters( 'woocommerce_reviews_title', $reviews_title, $count, $product ); // WPCS: XSS ok.

Where the hook is used in WooCommerce

Usage not found.