woocommerce_sort_countries filter-hookWC 1.0

Usage

add_filter( 'woocommerce_sort_countries', 'wp_kama_woocommerce_sort_countries_filter' );

/**
 * Function for `woocommerce_sort_countries` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_woocommerce_sort_countries_filter( $true ){

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

Where the hook is called

WC_Countries::get_countries()
woocommerce_sort_countries
woocommerce/includes/class-wc-countries.php 71
if ( apply_filters( 'woocommerce_sort_countries', true ) ) {

Where the hook is used in WooCommerce

Usage not found.