Home/Hooks/admin_head
ACTION

admin_head

This action is documented in wp-admin/admin-header.php

wp-admin/includes/template.php
Line 2174
0 Parameters
View Source

Usage

add_action( 'admin_head', 'your_callback_function' );

Action Callback:

function your_callback_function(  ) {
    // Your code here
    
}

⚡ Action Hook

Action hooks allow you to insert custom code at specific points during WordPress execution. Actions do not return any values.