Как я могу исправить ошибку Mimetype при загрузке таблицы стилей в WordPress? - PullRequest
0 голосов
/ 24 марта 2020

My CSS

/*
Theme Name: Data Kraken
Theme URI: https://wordpress.com/themes/d-k/
Description: With bold featured images and bright, cheerful colors, Dara is ready to get to work for your business.
Version: 1.0.0
Author: Automattic
Author URI: http://wordpress.com/themes/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: d-k


*/

Мои функции. php

<?php 
    function enqueue_kraken_theme(){

        //style
        wp_enqueue_style( 
            "custom",
            get_template_directory(  ) . "/style.css",
            array(),
            "1.0.0",
            "all"
        );


    }

    add_action("wp_enqueue_scripts", "enqueue_kraken_theme");



В настоящее время я пытаюсь поставить в очередь стиль таблицы стилей. css, но я продолжаю получать сообщение об ошибке

Refused to apply style from 
because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.

Я не уверен, что происходит, поскольку я пытаюсь просто загрузить файл стиля. css.

Как я могу исправить ошибку Mimetype при загрузке таблицу стилей для WordPress?

1 Ответ

0 голосов
/ 25 марта 2020

Вы используете get_template_directory (), которая возвращает абсолютный путь к каталогу. Вы должны использовать get_template_directory_uri () т.е.

wp_enqueue_style("custom", get_template_directory_uri() . "/style.css", array(), "1.0.0", "all");
...