General: Update `wp_register_script()` calls in core to use new function signature.
Since most core scripts are registered using `WP_Scripts::add()`, which is not affected by the signature change, only calls to `wp_register_script()` using the old signature need to be updated. There is only a single instance left, which is updated in this changeset. Props incursadesigns. Fixes #58634. Built from https://develop.svn.wordpress.org/trunk@56568 git-svn-id: http://core.svn.wordpress.org/trunk@56080 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d6c86f944f
commit
ca8a033079
|
@ -2717,7 +2717,7 @@ function enqueue_editor_block_styles_assets() {
|
|||
$register_script_lines[] = '} )();';
|
||||
$inline_script = implode( "\n", $register_script_lines );
|
||||
|
||||
wp_register_script( 'wp-block-styles', false, array( 'wp-blocks' ), true, true );
|
||||
wp_register_script( 'wp-block-styles', false, array( 'wp-blocks' ), true, array( 'in_footer' => true ) );
|
||||
wp_add_inline_script( 'wp-block-styles', $inline_script );
|
||||
wp_enqueue_script( 'wp-block-styles' );
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56567';
|
||||
$wp_version = '6.4-alpha-56568';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue