woocommerce_product_related_products_heading filter-hookWC 1.0

Usage

add_filter( 'woocommerce_product_related_products_heading', 'wp_kama_woocommerce_product_related_products_heading_filter' );

/**
 * Function for `woocommerce_product_related_products_heading` filter-hook.
 * 
 * @param  $__ 
 *
 * @return 
 */
function wp_kama_woocommerce_product_related_products_heading_filter( $__ ){

	// filter...
	return $__;
}
$__
-

Where the hook is called

In file: /templates/single-product/related.php
woocommerce_product_related_products_heading
woocommerce/templates/single-product/related.php 27
$heading = apply_filters( 'woocommerce_product_related_products_heading', __( 'Related products', 'woocommerce' ) );

Where the hook is used in WooCommerce

Usage not found.