- Timestamp:
- 06/04/2011 10:05:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyeleven/inc/theme-options.php
r18135 r18141 178 178 */ 179 179 function twentyeleven_get_theme_options() { 180 return get_option( 'twentyeleven_theme_options' ); 180 $options = get_option( 'twentyeleven_theme_options' ); 181 if ( false === $options ) 182 return twentyeleven_get_default_theme_options(); 183 return $options; 181 184 } 182 185
Note: See TracChangeset
for help on using the changeset viewer.