我有一个页面,我想在 worpress 中为该特定页面加载 sytlesheet 和 JS 文件。
我在 tabcontent.css 位于名为 tabcontent-->template 的目录中的 head 部分添加了以下代码,该目录与我的 functions.php 文件位于同一目录,对于 js 文件也是如此。
<link href="<?php echo bloginfo('stylesheet_directory');?>/tab-content/template1/tabcontent.css" rel="stylesheet" type="text/css" />
<script src="<?php echo bloginfo('stylesheet_directory');?>/tab-content/tabcontent.js" type="text/javascript"></script>
我怎样才能正确加载这些文件。
谢谢