WP_Scripts::set_group( string $handle, bool $recursion, int|false $group = false )

Sets handle group.


Description Description

See also See also


Top ↑

Parameters Parameters

$handle

(string) (Required) Name of the item. Should be unique.

$recursion

(bool) (Required) Internal flag that calling function was called recursively.

$group

(int|false) (Optional) Group level: (int) level, (false) no groups.

Default value: false


Top ↑

Return Return

(bool) Not already in the group or a lower group


Top ↑

Source Source

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

	public function set_group( $handle, $recursion, $group = false ) {
		if ( isset( $this->registered[ $handle ]->args ) && $this->registered[ $handle ]->args === 1 ) {
			$grp = 1;
		} else {
			$grp = (int) $this->get_data( $handle, 'group' );
		}

		if ( false !== $group && $grp > $group ) {
			$grp = $group;
		}

		return parent::set_group( $handle, $recursion, $grp );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
2.8.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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