wc_privacy_policy_content хук-фильтрWC 1.0

Использование

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
-

Где вызывается хук

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

Где используется хук в WooCommerce

Использование не найдено.