Changeset 29103
- Timestamp:
- 07/11/2014 08:26:55 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r29051 r29103 1020 1020 1021 1021 $this->add_setting( 'background_repeat', array( 1022 'default' => 'repeat',1022 'default' => get_theme_support( 'custom-background', 'default-repeat' ), 1023 1023 'theme_supports' => 'custom-background', 1024 1024 ) ); … … 1037 1037 1038 1038 $this->add_setting( 'background_position_x', array( 1039 'default' => 'left',1039 'default' => get_theme_support( 'custom-background', 'default-position-x' ), 1040 1040 'theme_supports' => 'custom-background', 1041 1041 ) ); … … 1053 1053 1054 1054 $this->add_setting( 'background_attachment', array( 1055 'default' => 'fixed',1055 'default' => get_theme_support( 'custom-background', 'default-attachment' ), 1056 1056 'theme_supports' => 'custom-background', 1057 1057 ) ); … … 1062 1062 'type' => 'radio', 1063 1063 'choices' => array( 1064 'scroll' => __('Scroll'), 1064 1065 'fixed' => __('Fixed'), 1065 'scroll' => __('Scroll'),1066 1066 ), 1067 1067 ) );
Note: See TracChangeset
for help on using the changeset viewer.