Home/Hooks/admin_enqueue_scripts
ACTION

admin_enqueue_scripts

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

wp-admin/includes/template.php
Line 2156
1 Parameter
View Source

Usage

add_action( 'admin_enqueue_scripts', 'your_callback_function', 10, 1 );

Action Callback:

function your_callback_function( $hook_suffix ) {
    // Your code here
    
}

Parameters

$hook_suffix

Parameter 1

⚡ Action Hook

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