Changeset 27710 for trunk/src/wp-includes/theme.php
- Timestamp:
- 03/25/2014 01:06:21 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r27703 r27710 188 188 */ 189 189 function get_stylesheet_directory_uri() { 190 $stylesheet = get_stylesheet();190 $stylesheet = str_replace( '%2F', '/', rawurlencode( get_stylesheet() ) ); 191 191 $theme_root_uri = get_theme_root_uri( $stylesheet ); 192 192 $stylesheet_dir_uri = "$theme_root_uri/$stylesheet"; … … 319 319 */ 320 320 function get_template_directory_uri() { 321 $template = get_template();321 $template = str_replace( '%2F', '/', rawurlencode( get_template() ) ); 322 322 $theme_root_uri = get_theme_root_uri( $template ); 323 323 $template_dir_uri = "$theme_root_uri/$template";
Note: See TracChangeset
for help on using the changeset viewer.