acf/taxonomy/prevent_access_to_wp_functions_in_meta_box_cb filter-hookACF 1.0

Usage

add_filter( 'acf/taxonomy/prevent_access_to_wp_functions_in_meta_box_cb', 'wp_kama_acf_taxonomy_prevent_access_to_wp_functions_in_meta_box_cb_filter' );

/**
 * Function for `acf/taxonomy/prevent_access_to_wp_functions_in_meta_box_cb` filter-hook.
 * 
 * @param  $true 
 *
 * @return 
 */
function wp_kama_acf_taxonomy_prevent_access_to_wp_functions_in_meta_box_cb_filter( $true ){
	// filter...
	return $true;
}
$true
-

Where the hook is called

ACF_Taxonomy::build_safe_context_for_metabox_cb()
acf/taxonomy/prevent_access_to_wp_functions_in_meta_box_cb
acf/includes/post-types/class-acf-taxonomy.php 543
if ( apply_filters( 'acf/taxonomy/prevent_access_to_wp_functions_in_meta_box_cb', true ) && substr( strtolower( $original_cb ), 0, 3 ) === 'wp_' ) {

Where the hook is used in Advanced Custom Fields PRO

Usage not found.