(deprecated) filter-hookACF 1.0

Usage

add_filter( '(deprecated)', 'wp_kama_deprecated_filter' );

/**
 * Function for `(deprecated)` filter-hook.
 * 
 * @param  $args 
 *
 * @return 
 */
function wp_kama_deprecated_filter( $args ){
	// filter...
	return $args;
}
$args
-

Where the hook is called

_acf_apply_deprecated_hook()
(deprecated)
acf/includes/acf-hook-functions.php 221
$args[0] = apply_filters_ref_array( $hook['deprecated'], $args );
acf/includes/acf-hook-functions.php 223
do_action_ref_array( $hook['deprecated'], $args );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.