wc_privacy_policy_content filter-hookWC 1.0

Usage

add_filter( 'wc_privacy_policy_content', 'wp_kama_wc_privacy_policy_content_filter' );

/**
 * Function for `wc_privacy_policy_content` filter-hook.
 * 
 * @param  $content 
 *
 * @return 
 */
function wp_kama_wc_privacy_policy_content_filter( $content ){

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

Where the hook is called

WC_Privacy::get_privacy_message()
wc_privacy_policy_content
woocommerce/includes/class-wc-privacy.php 130
return apply_filters( 'wc_privacy_policy_content', $content );

Where the hook is used in WooCommerce

Usage not found.