mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-31 13:37:51 +01:00
Default Filters: Correct hook type for wp_print_scripts
and customize_controls_print_styles
.
Props Cybr, bhi3315. Fixes #58665. Built from https://develop.svn.wordpress.org/trunk@56140 git-svn-id: http://core.svn.wordpress.org/trunk@55652 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
025e70df46
commit
fec46200bb
@ -589,9 +589,9 @@ add_action( 'enqueue_block_editor_assets', 'enqueue_editor_block_styles_assets'
|
||||
add_action( 'enqueue_block_editor_assets', 'wp_enqueue_editor_block_directory_assets' );
|
||||
add_action( 'enqueue_block_editor_assets', 'wp_enqueue_editor_format_library_assets' );
|
||||
add_action( 'enqueue_block_editor_assets', 'wp_enqueue_global_styles_css_custom_properties' );
|
||||
add_filter( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
|
||||
add_action( 'wp_print_scripts', 'wp_just_in_time_script_localization' );
|
||||
add_filter( 'print_scripts_array', 'wp_prototype_before_jquery' );
|
||||
add_filter( 'customize_controls_print_styles', 'wp_resource_hints', 1 );
|
||||
add_action( 'customize_controls_print_styles', 'wp_resource_hints', 1 );
|
||||
add_action( 'admin_head', 'wp_check_widget_editor_deps' );
|
||||
add_filter( 'block_editor_settings_all', 'wp_add_editor_classic_theme_styles' );
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-beta3-56139';
|
||||
$wp_version = '6.3-beta3-56140';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user