Wrapper for do_action( ‘wp_enqueue_scripts’ ).
Allows plugins to queue scripts for the front end using wp_enqueue_script() .
Runs first in wp_head() where all is_home() , is_page() , etc. functions are available.
function wp_enqueue_scripts() {
/**
* Fires when scripts and styles are enqueued.
*
* @since 2.8.0
*/
do_action( 'wp_enqueue_scripts' );
}
Fires when scripts and styles are enqueued.
| Version | Description |
|---|---|
| 2.8.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_enqueue_scripts