IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
189 | 189 | function get_stylesheet_directory_uri() { |
190 | 190 | $stylesheet = str_replace( '%2F', '/', rawurlencode( get_stylesheet() ) ); |
191 | 191 | $theme_root_uri = get_theme_root_uri( $stylesheet ); |
192 | | $stylesheet_dir_uri = "$theme_root_uri/$stylesheet"; |
| 192 | $stylesheet_dir_uri = trailingslashit( $theme_root_uri ) . $stylesheet; |
193 | 193 | |
194 | 194 | /** |
195 | 195 | * Filter the stylesheet directory URI. |
… |
… |
|
320 | 320 | function get_template_directory_uri() { |
321 | 321 | $template = str_replace( '%2F', '/', rawurlencode( get_template() ) ); |
322 | 322 | $theme_root_uri = get_theme_root_uri( $template ); |
323 | | $template_dir_uri = "$theme_root_uri/$template"; |
| 323 | $template_dir_uri = trailingslashit( $theme_root_uri ) . $template; |
324 | 324 | |
325 | 325 | /** |
326 | 326 | * Filter the current theme directory URI. |