我第一次创建一个主题from scratch.
这不是儿童主题
在主题中function.php
我正在做的文件
add_action( \'wp_enqueue_scripts\', function() {
wp_enqueue_style( \'style\', get_stylesheet_uri());
});
但是
style.css
提供的html中不包括文件。
我是否必须做些什么来“强制”加入我的主题CSSE?
在index.php
我试着打印get_stylesheet_uri()
我得到了我的css的完整URL:http://my.domain.it/wp-content/themes/real/style.css
作为参考,这是我的主题index.php
<!-- Inizio di INDEX.PHP -->
<?php
get_header();
?>
<!-- Index.php, dopo get_header(); !-->
<DIV id="container">
<div id="row1">
Riga 1
</div>
<div id="row2">
Riga 2
</div>
</DIV> <?php // id="main_container" ?>
<!-- Index.php, prima di get_footer(); !-->
<?php
get_footer();
?>
<!-- Fine di INDEX.PHP -->
我在打电话
get_header()
包括我的头文件
这是标题。php
<!DOCTYPE html>
<html>
<head>
<title>
<?php bloginfo( \'name\' ); ?>
</title>
<meta name="description" content=" <?php bloginfo( \'description\' ); ?> ">
</head>
<body>
<!-- Fine di HEADER.PHP -->