在我的wordpress模板中链接到我的CSS,css文件位于模板的兄弟文件夹中

时间:2015-09-04 09:42:14

标签: css wordpress stylesheet rel

我在wp-content/themes/fifthteen/paytest.php中有temp.php,css文件是**wp-content/themes/fifthteen/paytest/paytest.css** 我想链接到paytest.php中的paytest.css

<link rel="stylesheet" href="????/paytest/paytest.css />

我该怎么做?

2 个答案:

答案 0 :(得分:2)

您应该使用 <link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/paytest/paytest.css "/> 来获取当前主题的模板目录URI。

{{1}}

答案 1 :(得分:0)

您需要链接到主题目录

<?php echo get_template_directory(); ?>

所以在工作示例中:

<link rel="stylesheet" href="<?php echo get_template_directory(); ?>/paytest/paytest.css />