CSS 在 WordPress 上无法正常显示

发布于 2024-11-06 05:50:44 字数 112 浏览 0 评论 0原文

我的 WordPress 网站 未正确显示 CSS。

我可以做什么来解决这个问题?

My WordPress site is not properly displaying CSS.

What can I do to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心凉怎暖 2024-11-13 05:50:44

引用的 CSS 文件为 http://www.bestalljobs.com/wp-content/w3tc/min/97618f3fcd22e8979a75a7dd6c414172.3938259878.css。当我将其加载到浏览器中时,出现“无效参数”错误。

很难准确地说出你在这里做什么。您从哪里得到这个网址?

The CSS file referenced is http://www.bestalljobs.com/wp-content/w3tc/min/97618f3fcd22e8979a75a7dd6c414172.3938259878.css. When I load this into the browser, I get an 'invalid parameter' error.

It's hard to say exactly what you're doing here. Where did you get this URL?

家住魔仙堡 2024-11-13 05:50:44

确保使用 WordPress 函数 bloginfo 引用您的 CSS。

它应该看起来像这样:

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> 

它将提供与激活的主题相关的 CSS。看起来您已经修复了它,并且您最初可能使用了此代码,但如果您已将其硬编码,则将其更改为此方法。

Make sure your CSS is referenced using the WordPress function bloginfo.

It should look something like this:

<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" /> 

It will give the CSS relative to whichever theme is activated. It seems like you have fixed it and you may have used this code initially, but if you have hard coded it in, then change it to this method.

玻璃人 2024-11-13 05:50:44

将此代码添加到您的头文件中

<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
 <![endif]-->

add this code in your header file

<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
 <![endif]-->
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文