我有一個頁面,我想要爲worpress中的特定頁面加載一個sytlesheet和一個JS文件。頁面不在Wordpress中加載樣式表或JS文件
我在tabContent.css位於名爲tabcontent - >模板的目錄的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>
我怎樣才能正確地加載這些文件。
感謝
我有點困惑。因此,如果您的主題文件夾是xyz,則位於「xyz/tabcontent.css」,「xyz/tab-content/tabcontent.css」,「xyz/tab-content/template1/tabcontent.css」中的'tabcontent.css'或「xyz/tab-content/template/tabcontent.css」? –
@TomaszNguyen抱歉應該更清楚。它是xyz/tab-content/template1/tabcontent.css其中xyz是我的主題文件夾 – user2798091
看來您使用的代碼很好。你可以看看http://codex.wordpress.org/Function_Reference/get_stylesheet_directory_uri。 –