- Timestamp:
- 09/09/2021 02:47:10 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-custom-css-setting.php
r48782 r51784 174 174 * 175 175 * @since 4.7.0 176 * 177 * @param string $css The input value. 176 * @since 5.9.0 Renamed `$css` to `$value` for PHP 8 named parameter support. 177 * 178 * @param string $value CSS to update. 178 179 * @return int|false The post ID or false if the value could not be saved. 179 180 */ 180 public function update( $css ) { 181 public function update( $value ) { 182 // Restores the more descriptive, specific name for use within this method. 183 $css = $value; 184 181 185 if ( empty( $css ) ) { 182 186 $css = '';
Note: See TracChangeset
for help on using the changeset viewer.