acf/taxonomy/form_data action-hookACF 5.3.8

This function will add extra HTML to the acf form data element

Usage

add_action( 'acf/taxonomy/form_data', 'wp_kama_acf_taxonomy_form_data_action' );

/**
 * Function for `acf/taxonomy/form_data` action-hook.
 * 
 * @param array $args Arguments array to pass through to action.
 *
 * @return void
 */
function wp_kama_acf_taxonomy_form_data_action( $args ){
	// action...
}
$args(array)
Arguments array to pass through to action.

Changelog

Since 5.3.8 Introduced.

Where the hook is called

ACF_Admin_Taxonomy::form_data()
acf/taxonomy/form_data
acf/includes/admin/post-types/admin-taxonomy.php 206
do_action( 'acf/taxonomy/form_data', $args );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.