私の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
*/
私の functions.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");
現在、スタイル シート style.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.
style.css ファイルをアップロードしようとしているだけなので、何が起こっているのかわかりません。
スタイルシートをワードプレスにアップロードするときの Mimetype エラーを修正するにはどうすればよいですか?