Uses
| Uses | Description |
|---|---|
| wp-includes/script-loader.php: wp_scripts_get_suffix() | Returns the suffix that can be used for the scripts. |
Registers all the WordPress packages scripts that are in the standardized js/dist/ location.
For the order of $scripts->add see wp_default_scripts.
(WP_Scripts) (Required) WP_Scripts object.
File: wp-includes/script-loader.php
function wp_default_packages_scripts( $scripts ) {
$suffix = wp_scripts_get_suffix();
// Expects multidimensional array like:
// 'a11y.js' => array('dependencies' => array(...), 'version' => '...'),
// 'annotations.js' => array('dependencies' => array(...), 'version' => '...'),
// 'api-fetch.js' => array(...
$assets = include ABSPATH . WPINC . '/assets/script-loader-packages.php';
foreach ( $assets as $package_name => $package_data ) {
$basename = basename( $package_name, '.js' );
$handle = 'wp-' . $basename;
$path = "/wp-includes/js/dist/{$basename}{$suffix}.js";
if ( ! empty( $package_data['dependencies'] ) ) {
$dependencies = $package_data['dependencies'];
} else {
$dependencies = array();
}
// Add dependencies that cannot be detected and generated by build tools.
switch ( $handle ) {
case 'wp-block-library':
array_push( $dependencies, 'editor' );
break;
case 'wp-edit-post':
array_push( $dependencies, 'media-models', 'media-views', 'postbox', 'wp-dom-ready' );
break;
}
$scripts->add( $handle, $path, $dependencies, $package_data['version'], 1 );
if ( in_array( 'wp-i18n', $dependencies, true ) ) {
$scripts->set_translations( $handle );
}
}
} | Version | Description |
|---|---|
| 5.0.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_default_packages_scripts