Changeset 4144 for trunk/wp-includes/theme.php
- Timestamp:
- 08/30/2006 09:46:31 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/theme.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/theme.php
r4035 r4144 5 5 6 6 function get_stylesheet() { 7 return apply_filters('stylesheet', get_ settings('stylesheet'));7 return apply_filters('stylesheet', get_option('stylesheet')); 8 8 } 9 9 … … 27 27 28 28 function get_template() { 29 return apply_filters('template', get_ settings('template'));29 return apply_filters('template', get_option('template')); 30 30 } 31 31 … … 238 238 $themes = get_themes(); 239 239 $theme_names = array_keys($themes); 240 $current_template = get_ settings('template');241 $current_stylesheet = get_ settings('stylesheet');240 $current_template = get_option('template'); 241 $current_stylesheet = get_option('stylesheet'); 242 242 $current_theme = 'WordPress Default'; 243 243 … … 260 260 261 261 function get_theme_root_uri() { 262 return apply_filters('theme_root_uri', get_ settings('siteurl') . "/wp-content/themes", get_settings('siteurl'));262 return apply_filters('theme_root_uri', get_option('siteurl') . "/wp-content/themes", get_option('siteurl')); 263 263 } 264 264
Note: See TracChangeset
for help on using the changeset viewer.