HTML5Blank WordPress主题没有阅读style.css

时间:2018-04-20 02:42:17

标签: php html css wordpress

更新

这是网站:http://espavel.ayinmedia.net/

我摆脱了HTML5Blank主题并再次上传。添加了我的标题和index.php但是没有在style.css文件中添加任何样式(用于测试目的),我把它留空了。重新加载网站,它显示了所有的样式。它从那个style.css?ver = 1.0得到它,我不知道它住在哪里。

这令人沮丧,因为我无法将我的CSS更改上传到我的WP网站。

最初,我遇到了主题没有阅读媒体查询的问题,所以,我尝试添加一个responsive.css文件来添加我的所有MQ,这些都没有用,所以我摆脱了那个文件。

我添加了这行代码,以使header.php与responsive.css文件连接:

<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri() ?>/responsive.css" />

(这不起作用)然后我摆脱了那条线,之后,它再也没有读过style.css了。

这是我当前的 header.php 文件:

<!doctype html>
<html <?php language_attributes(); ?> class="no-js">    
    <head>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
        <link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
        <link rel="stylesheet" href="css/font-awesome.min.css" type="text/css" />
        <link href="https://fonts.googleapis.com/css?family=Raleway:400,500,600,700" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Roboto:300,400" rel="stylesheet">

        <meta charset="<?php bloginfo('charset'); ?>">
        <title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>

        <link href="//www.google-analytics.com" rel="dns-prefetch">
        <link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/style.css" />
        <link href="<?php echo get_template_directory_uri(); ?>/img/icons/favicon.ico" rel="shortcut icon">
        <link href="<?php echo get_template_directory_uri(); ?>/img/icons/touch.png" rel="apple-touch-icon-precomposed">

        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta name="description" content="<?php bloginfo('description'); ?>">

        <?php wp_head(); ?>
        <script>
        // conditionizr.com
        // configure environment tests
        conditionizr.config({
            assets: '<?php echo get_template_directory_uri(); ?>',
            tests: {}
        });
        </script>

    </head>
    <body <?php body_class(); ?>>

    <header>

你能帮帮我吗?

1 个答案:

答案 0 :(得分:0)

解决方案比我想象的要容易。清除缓存修复了问题。有两种选择:

  1. 清除浏览器上的缓存。
  2. 使用WP上的插件清除它,例如WP Super cache。
  3. 更多信息: http://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/