- Timestamp:
- 11/15/2013 09:19:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php
r26211 r26227 35 35 ) ) ); 36 36 37 add_filter( 'theme_mod_accent_mid', 'twentyfourteen_accent_mid');37 add_filter( 'theme_mod_accent_mid', 'twentyfourteen_accent_mid' ); 38 38 add_filter( 'theme_mod_accent_light', 'twentyfourteen_accent_light' ); 39 39 … … 139 139 */ 140 140 function twentyfourteen_rebuild_accent_colors() { 141 set_theme_mod( 'accent_mid', twentyfourteen_accent_mid());141 set_theme_mod( 'accent_mid', twentyfourteen_accent_mid() ); 142 142 set_theme_mod( 'accent_light', twentyfourteen_accent_light() ); 143 143 } … … 158 158 return; 159 159 160 $accent_mid = get_theme_mod( 'accent_mid');160 $accent_mid = get_theme_mod( 'accent_mid' ); 161 161 $accent_light = get_theme_mod( 'accent_light' ); 162 162 … … 318 318 }'; 319 319 320 321 320 wp_add_inline_style( 'twentyfourteen-style', $css ); 322 321 }
Note: See TracChangeset
for help on using the changeset viewer.