- Timestamp:
- 02/20/2017 06:49:11 AM (8 years ago)
- Location:
- branches/4.7
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.7
-
branches/4.7/src/wp-includes/class-wp-customize-setting.php
r39318 r40088 586 586 if ( 'option' === $this->type ) { 587 587 return get_option( $id_base, $default ); 588 } else if ( 'theme_mod') {588 } elseif ( 'theme_mod' === $this->type ) { 589 589 return get_theme_mod( $id_base, $default ); 590 590 } else { … … 615 615 } 616 616 return update_option( $id_base, $value, $autoload ); 617 } else if ( 'theme_mod') {617 } elseif ( 'theme_mod' === $this->type ) { 618 618 set_theme_mod( $id_base, $value ); 619 619 return true;
Note: See TracChangeset
for help on using the changeset viewer.