acf/get_taxonomies filter-hookACF 1.0

Usage

add_filter( 'acf/get_taxonomies', 'wp_kama_acf_get_taxonomies_filter', 10, 2 );

/**
 * Function for `acf/get_taxonomies` filter-hook.
 * 
 * @param  $taxonomies 
 * @param  $args       
 *
 * @return 
 */
function wp_kama_acf_get_taxonomies_filter( $taxonomies, $args ){
	// filter...
	return $taxonomies;
}
$taxonomies
-
$args
-

Where the hook is called

acf_get_taxonomies()
acf/get_taxonomies
acf/includes/api/api-term.php 48
$taxonomies = apply_filters( 'acf/get_taxonomies', $taxonomies, $args );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.