我对WordPress完全陌生,也没有开发自己的主题,但是function.php 未加载CSS文件。
标题。php
<html>
<head>
<?php wp_head(); ?>
</head>
<body>
<h2>I\'m header.php</h2>
单身。php
<?php
get_header();
while (have_posts()) {
the_post();
?>
<h2><?php the_title(); ?></h2>
<?php the_content(); ?>
<?php }
?>
功能。php
<?php
function main_css() {
wp_enqueue_style(\'style\', get_stylesheet_uri() );
}
add_action( \'wp_enqueue_scripts\', \'main_css\' );
样式。css
/*
Theme Name: My Theme
Author: Tesla
Version: 1.0
*/
body{
color: green;
}
h1{
color: pink;
}
我尝试了很多方法,但都没有加载,甚至禁用浏览器cookie、硬刷新、重新安装Wordpress。
我的代码有什么问题?