- Timestamp:
- 11/07/2016 06:12:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-customize-custom-css-setting.php
r39009 r39151 129 129 */ 130 130 public function value() { 131 return wp_get_custom_css( $this->stylesheet ); 131 $value = wp_get_custom_css( $this->stylesheet ); 132 if ( empty( $value ) ) { 133 $value = $this->default; 134 } 135 return $value; 132 136 } 133 137
Note: See TracChangeset
for help on using the changeset viewer.