WP_Theme::get_theme_root_uri
Returns the URL to the directory of the theme root.
This is typically the absolute URL to wp-content/themes. This forms the basis for all other URLs returned by WP_Theme, so we pass it to the public function get_theme_root_uri() and allow it to run the theme_root_uri filter.
Метод класса: WP_Theme{}
Хуков нет.
Возвращает
Строку. Theme root URI.
Использование
$WP_Theme = new WP_Theme(); $WP_Theme->get_theme_root_uri();
Список изменений
| С версии 3.4.0 | Введена. |
Код WP_Theme::get_theme_root_uri() WP Theme::get theme root uri WP 6.9.1
public function get_theme_root_uri() {
if ( ! isset( $this->theme_root_uri ) ) {
$this->theme_root_uri = get_theme_root_uri( $this->stylesheet, $this->theme_root );
}
return $this->theme_root_uri;
}