acf/input/admin_head
Fires during "admin_head" when ACF scripts are enqueued.
Usage
add_action( 'acf/input/admin_head', 'wp_kama_acf_input_admin_head_action' );
/**
* Function for `acf/input/admin_head` action-hook.
*
* @return void
*/
function wp_kama_acf_input_admin_head_action(){
// action...
}Changelog
| Since 5.6.9 | Introduced. |
Where the hook is called
acf/includes/assets.php 437
do_action( 'acf/input/admin_head' );
Where the hook is used in Advanced Custom Fields PRO
acf/includes/admin/admin-internal-post-type.php 96
add_action( 'acf/input/admin_head', array( $this, 'admin_head' ) );
acf/pro/admin/admin-options-page.php 133
add_action( 'acf/input/admin_head', array( $this, 'admin_head' ) );