acf/verify_ajax
Usage
add_action( 'acf/verify_ajax', 'wp_kama_acf_verify_ajax_action' );
/**
* Function for `acf/verify_ajax` action-hook.
*
* @return void
*/
function wp_kama_acf_verify_ajax_action(){
// action...
}Where the hook is called
acf/verify_ajax
acf/includes/api/api-helpers.php 739
do_action( 'acf/verify_ajax' );
Where the hook is used in Advanced Custom Fields PRO
acf/includes/wpml.php 48
add_action( 'acf/verify_ajax', array( $this, 'verify_ajax' ) );