Changeset 61117
- Timestamp:
- 11/03/2025 09:55:08 PM (3 weeks ago)
- File:
-
- 1 edited
- trunk/src/wp-includes/script-loader.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/script-loader.php
r61076 r61117 3056 3056 global $wp_styles; 3057 3057 3058 $total_inline_limit = 50000;3058 $total_inline_limit = 40000; 3059 3059 /** 3060 3060 * The maximum size of inlined styles in bytes. 3061 3061 * 3062 3062 * @since 5.8.0 3063 * @since 6.9.0 The default limit increased from 20K to 50K.3064 * 3065 * @param int $total_inline_limit The file-size threshold, in bytes. Default 50000.3063 * @since 6.9.0 The default limit increased from 20K to 40K. 3064 * 3065 * @param int $total_inline_limit The file-size threshold, in bytes. Default 40000. 3066 3066 */ 3067 3067 $total_inline_limit = apply_filters( 'styles_inline_size_limit', $total_inline_limit );
Note: See TracChangeset for help on using the changeset viewer.