Changeset 61013 for trunk/src/wp-includes/script-loader.php
- Timestamp:
- 10/21/2025 08:45:33 AM (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
r61008 r61013 3056 3056 global $wp_styles; 3057 3057 3058 $total_inline_limit = 20000;3058 $total_inline_limit = 50000; 3059 3059 /** 3060 3060 * The maximum size of inlined styles in bytes. 3061 3061 * 3062 3062 * @since 5.8.0 3063 * 3064 * @param int $total_inline_limit The file-size threshold, in bytes. Default 20000. 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. 3065 3066 */ 3066 3067 $total_inline_limit = apply_filters( 'styles_inline_size_limit', $total_inline_limit );
Note: See TracChangeset
for help on using the changeset viewer.