do_action( 'admin_enqueue_scripts', string $hook_suffix )

Enqueue scripts for all admin pages.


Description


Parameters

$hook_suffix

(string) The current admin page.


Top ↑

Source

File: wp-admin/admin-header.php

View on Trac


Top ↑

Changelog

Version Description
2.8.0 Introduced.

Top ↑

More Information

admin_enqueue_scripts is the proper hook to use when enqueuing scripts and styles that are meant to be used in the administration panel. Despite the name, it is used for enqueuing both scripts and styles.

It provides a single parameter, $hook_suffix, that informs the current admin page. This should be used to enqueue scripts and styles only in the pages they are going to be used, and avoid adding script and styles to all admin dashboard unnecessarily.