- Timestamp:
- 09/14/2023 04:54:22 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/style-engine/class-wp-style-engine-processor.php
r55820 r56574 86 86 * 87 87 * @since 6.1.0 88 * @since 6.4.0 The Optimization is no longer the default. 88 89 * 89 90 * @param array $options { … … 91 92 * 92 93 * @type bool $optimize Whether to optimize the CSS output, e.g. combine rules. 93 * Default true.94 * Default false. 94 95 * @type bool $prettify Whether to add new lines and indents to output. 95 96 * Defaults to whether the `SCRIPT_DEBUG` constant is defined. … … 99 100 public function get_css( $options = array() ) { 100 101 $defaults = array( 101 'optimize' => true,102 'optimize' => false, 102 103 'prettify' => defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG, 103 104 );
Note: See TracChangeset
for help on using the changeset viewer.