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

Sets handle group.

Description

See also

Parameters

$handlestringrequired
Name of the item. Should be unique.
$recursionboolrequired
Internal flag that calling function was called recursively.
$groupint|falseoptional
Group level: level (int), no groups (false).

Default:false

Return

bool Not already in the group or a lower group.

Source

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

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

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

Changelog

VersionDescription
2.8.0Introduced.

User Contributed Notes

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