WP_Scripts::get_unaliased_deps( string[] $deps ): string[]

In this article

This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.

Gets unaliased dependencies.

Description

An alias is a dependency whose src is false. It is used as a way to bundle multiple dependencies in a single handle. This in effect flattens an alias dependency tree.

Parameters

$depsstring[]required
Dependency handles.

Return

string[] Unaliased handles.

Source

 * @deprecated 6.3.0 Use methods get_inline_script_tag() or get_inline_script_data() instead.
 *
 * @param string $handle   Name of the script to print inline scripts for.
 *                         Must be lowercase.
 * @param string $position Optional. Whether to add the inline script
 *                         before the handle or after. Default 'after'.
 * @param bool   $display  Optional. Whether to print the script tag
 *                         instead of just returning the script data. Default true.
 * @return string|false Script data on success, false otherwise.
 */
public function print_inline_script( $handle, $position = 'after', $display = true ) {
	_deprecated_function( __METHOD__, '6.3.0', 'WP_Scripts::get_inline_script_data() or WP_Scripts::get_inline_script_tag()' );

	$output = $this->get_inline_script_data( $handle, $position );
	if ( empty( $output ) ) {

Changelog

VersionDescription
6.3.0Introduced.

User Contributed Notes

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