woocommerce_get_(page)_page_permalink filter-hookWC 1.0

Usage

add_filter( 'woocommerce_get_(page)_page_permalink', 'wp_kama_woocommerce_get_page_permalink_filter' );

/**
 * Function for `woocommerce_get_(page)_page_permalink` filter-hook.
 * 
 * @param  $permalink 
 *
 * @return 
 */
function wp_kama_woocommerce_get_page_permalink_filter( $permalink ){

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

Where the hook is called

wc_get_page_permalink()
woocommerce_get_(page)_page_permalink
woocommerce/includes/wc-page-functions.php 74
return apply_filters( 'woocommerce_get_' . $page . '_page_permalink', $permalink );

Where the hook is used in WooCommerce

Usage not found.