Changeset 60355
- Timestamp:
- 06/26/2025 07:22:53 PM (6 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/blocks.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks.php
r60316 r60355 Β 329 329 $style_uri = get_block_asset_url( $style_path_norm ); 330 330 331 Β $version = ! $is_core_block && isset( $metadata['version'] ) ? $metadata['version'] : false; 332 Β $result = wp_register_style( Β 331 $block_version = ! $is_core_block && isset( $metadata['version'] ) ? $metadata['version'] : false; Β 332 $version = $style_path_norm && defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? filemtime( $style_path_norm ) : $block_version; Β 333 $result = wp_register_style( 333 334 $style_handle_name, 334 335 $style_uri,
Note: See TracChangeset
for help on using the changeset viewer.