wp_enqueue_scripts()WP 2.8.0

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.

Hooks from the function

Return

null. Nothing (null).

Usage

wp_enqueue_scripts();

Changelog

Since 2.8.0 Introduced.

wp_enqueue_scripts() code WP 6.5.2

function wp_enqueue_scripts() {
	/**
	 * Fires when scripts and styles are enqueued.
	 *
	 * @since 2.8.0
	 */
	do_action( 'wp_enqueue_scripts' );
}