您在这里使用的是子主题,这意味着您应该使用get_stylesheet_directory_uri()
获取子主题的目录。
所以,在你的情况下,get_stylesheet_directory_uri()
将返回:
localhost:8888/wp-content/themes/x-child/
以及
get_template_directory_uri()
将返回:
localhost:8888/wp-content/themes/x/
使用此选项构建路径。此外,请注意,您需要在样式/脚本名称之前包含正斜杠,因为这些函数不提供尾部斜杠:
wp_enqueue_style( \'main\', get_template_directory_uri() . \'/main.css\' );
将返回:
localhost:8888/wp-content/themes/x/main.css