gpt4 book ai didi

jquery - 为什么 noscript 和 skel 在 wordpress 中不起作用?

转载 作者:行者123 更新时间:2023-11-28 10:29:26 27 4
gpt4 key购买 nike

我正在使用微型端口模板。 可以找到演示 here .

头部部分如下所示:

<!DOCTYPE HTML>
<!--
Miniport 2.5 by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Miniport by HTML5 UP</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,600,700" rel="stylesheet" />
<script src="js/jquery.min.js"></script>
<script src="js/config.js"></script>
<script src="js/skel.min.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel-noscript.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-desktop.css" />
</noscript>
<!--[if lte IE 9]><link rel="stylesheet" href="css/ie9.css" /><![endif]-->
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><link rel="stylesheet" href="css/ie8.css" /><![endif]-->
<!--[if lte IE 7]><link rel="stylesheet" href="css/ie7.css" /><![endif]-->
</head>

没有任何改变,但增加了<?php wp_head(); ?>将其转换为 wordpress 主题时。但是 css 坏了,看起来页面在 <noscript> 时没有获取 css有没有。将原始主题转换为 wordpress 时,响应性也会被破坏。如何解决 1.noscript 问题 2. 响应问题?

最佳答案

您以错误的方式调用样式表。将 css 调用更改为:

<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/skel-noscript.css" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/style.css" />
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/style-desktop.css" />

但我建议您在索引文件夹中创建一个 style.css,然后使用@import 到其他工作表。为此,将调用更改为:

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

注意:对js文件做同样的事情。

<script src="<?php bloginfo('template_url'); ?>/js/jquery.min.js"></script>
<script src="<?php bloginfo('template_url'); ?>/js/config.js"></script>
<script src="<?php bloginfo('template_url'); ?>/js/skel.min.js"></script>

关于jquery - 为什么 noscript 和 skel 在 wordpress 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23593625/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com