Fix WP_Theme's get_template_directory_uri() method. props batmoo. see #21549 for trunk.
git-svn-id: http://core.svn.wordpress.org/trunk@21503 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
076868e109
commit
4d014c4f40
|
@ -814,7 +814,7 @@ final class WP_Theme implements ArrayAccess {
|
||||||
else
|
else
|
||||||
$theme_root_uri = $this->get_theme_root_uri();
|
$theme_root_uri = $this->get_theme_root_uri();
|
||||||
|
|
||||||
return $theme_root . '/' . $this->template;
|
return $theme_root_uri . '/' . $this->template;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue