如何定义并链接位于header.php上任意文件夹中的css的完整路径 时间:2018-05-31 作者:chat explore 我想链接css和。我头上的js脚本。php文件,问题是我不确定目录的起点以下是我的文件所在的目录:路径示例:link href=“path/to/lightbox.css”rel=“stylesheet”>我的服务器中的路径:/public\\html/wp-content/themes/totalduplicate/lightbox2-master/lightbox2-master/src/css非常感谢。 1 个回复 SO网友:David Sword 你应该调查一下wp_enqueue_script() 和wp_enque_style(), 它们将处理脚本/样式标记的组装和放置,以及标题内部的依赖顺序(通过wp_head()) 或页脚,如果您想在页面底部加载资产。所以,以你为例add_action( "wp_enqueue_scripts", function(){ wp_enqueue_style( \'mythemelightbox\', get_template_directory_uri().\'/lightbox2-master/lightbox2-master/src/css/lightbox.css\', [], false ); }); 请注意get_template_directory_uri() 是用当前主题的路径构建当前域的内容。 结束 文章导航