📜  get_template_directory_uri - PHP (1)

📅  最后修改于: 2023-12-03 14:41:23.499000             🧑  作者: Mango

get_template_directory_uri()函数

函数名称:get_template_directory_uri()

函数作用:返回当前主题(theme)的URI。

使用说明

该函数没有参数,直接调用即可。

$uri = get_template_directory_uri();

$uri变量存储了当前主题的URI(Uniform Resource Identifier),例如:http://example.com/wp-content/themes/your-theme

示例

以下示例演示如何在头部通过调用该函数返回当前主题的URI,并使用该URI加载JavaScript文件。该JavaScript文件位于主题文件夹下的js子文件夹内。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>My Theme</title>
    <script src="<?php echo get_template_directory_uri(); ?>/js/myscript.js"></script>
</head>
<body>
    <p>Welcome to my website!</p>
</body>
</html>

以上代码会输出以下HTML代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>My Theme</title>
    <script src="http://example.com/wp-content/themes/your-theme/js/myscript.js"></script>
</head>
<body>
    <p>Welcome to my website!</p>
</body>
</html>