woocommerce_admin_onboarding_themes_whitelist filter-hookWC 1.0

Usage

add_filter( 'woocommerce_admin_onboarding_themes_whitelist', 'wp_kama_woocommerce_admin_onboarding_themes_whitelist_filter' );

/**
 * Function for `woocommerce_admin_onboarding_themes_whitelist` filter-hook.
 * 
 * @param  $allowed_themes 
 *
 * @return 
 */
function wp_kama_woocommerce_admin_onboarding_themes_whitelist_filter( $allowed_themes ){

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

Where the hook is called

OnboardingThemes::get_allowed_themes()
woocommerce_admin_onboarding_themes_whitelist
woocommerce/src/Internal/Admin/Onboarding/OnboardingThemes.php 230
return apply_filters( 'woocommerce_admin_onboarding_themes_whitelist', $allowed_themes );

Where the hook is used in WooCommerce

Usage not found.