WP_Scripts::print_scripts( mixed $handles = false, int $group = false )

Prints scripts.


Description Description

Prints the scripts passed to it or the print queue. Also prints all necessary dependencies.


Parameters Parameters

$handles

(mixed) (Optional) Scripts to be printed. (void) prints queue, (string) prints that script, (array of strings) prints those scripts.

Default value: false

$group

(int) (Optional) If scripts were queued in groups prints this group number.

Default value: false


Top ↑

Return Return

(array) Scripts that have been printed.


Top ↑

Source Source

File: wp-includes/class.wp-scripts.php

	public function print_scripts( $handles = false, $group = false ) {
		return $this->do_items( $handles, $group );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Added the $group parameter.
2.1.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.