**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
11小时前关门了。
Improve this question
我已经建立了一个WordPress网站和一切工作正常,直到我注意到,CSS只工作在我自己的电脑上,而不是在别人。
下面是我如何连接它。
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/style.min.css" type="text/css">
可能是什么问题?为什么它只出现在我的计算机上?
我试着寻找为什么会这样,但我找不到帮助
3条答案
按热度按时间iqih9akk1#
您的
href
如下所示:这意味着,无论
bloginfo('template_url)
的结果如何,它都将优先于/style.min.css
。bloginfo('template_url')
的结果:如果不正确,则可能需要调整/更新设置或修复方法bloginfo('template_url')
已经正确时,查看追加/style.min.css
是否会生成预期的路径jtw3ybtb2#
您需要在主题的function.php文件中添加以下代码并刷新缓存
j9per5c43#
使用此方法