Wordpress style.css无法在页面上工作

时间:2018-01-12 05:02:08

标签: css wordpress

我一直在寻找为什么style.css没有加载/申请/在线工作的时间,真的需要你的帮助!谢谢!

我的情况有点奇怪,它适用于我的header.php,但不适用于页面和footer.php

我正在开发自定义帖子类型和提升自定义字段,并尝试嵌入一个部分,然后刷新页面,然后我的所有风格都消失了。

这是我尝试过的,到目前为止还没有工作......

  1. 我停用了所有插件。
  2. 清理缓存并刷新,我甚至重新启动服务器。
  3. 删除.htaccess并重新创建新的。
  4. 我打开WP调试工具,没有错误显示。
  5. 我检查了chrome控制台,没有出现红色错误。在源代码中,我相信他们加载了style.css
  6. enter image description here 6.我的标题链接到css

    <link href="<?php bloginfo('stylesheet_directory');?>/style.css" rel="stylesheet" type="text/css">
    

    我的functions.php已经有wp_enqueue_script,我可以添加任何内容吗?

    function new_theme_scripts() {
        wp_enqueue_style( 'new-theme-style', get_stylesheet_uri() );
    
        wp_enqueue_script( 'new-theme-navigation', get_template_directory_uri() . '/js/navigation.js', [], '20151215', TRUE );
    
        wp_enqueue_script( 'new-theme-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', [], '20151215', TRUE );
    
        if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
            wp_enqueue_script( 'comment-reply' );
        }
    }
    
    add_action( 'wp_enqueue_scripts', 'new_theme_scripts' );
    

    谢谢!

0 个答案:

没有答案