我浏览了有关此主题的许多其他主题,但似乎没有一个对我有用。
我正在尝试制作自己的 WordPress 主题,但我不断收到此错误:
GET http:/ /placeholder-url.net/wp-content/themes/awesomethemecss/awesome.css?ver=1.0.0 net::ERR_ABORTED 404 (Not Found)
这是php:
function load_my_stylesheets() {
wp_enqueue_style('customstyle', get_template_directory_uri() . 'css/awesome.css', array(), '1.0.0', 'all');
}
add_action('wp_enqueue_scripts', 'load_my_stylesheets');
这是我的测试 CSS:
html, body {
color: #333;
background: #eee;
font: sans-serif;
}
和 header.php:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Awesome Theme</title>
<?php wp_head();?>
</head>
<body>
我错过了什么/做错了什么?
白板的微信