好吧所以我正在为一个网站创建我自己的主题通常这个工作得很好但是由于某种原因我的样式表不起作用并且在检查我的网站时缺少来源中的wp-content文件。我能看到的唯一文件是wp-includes和我的索引。这只发生在我创建自己的主题时,如果我激活其中一个默认的主题。我注意到这只发生在我将我的页眉和页脚php文件添加到ftp时。这是我的代码
头:
<html <?php language_attributes(); ?>>
<head>
<meta charset="UFT-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php wp_head(); ?>
</head>
<body>
<div class="container-fluid">
<div class="container">
<div class="col-md-12">
header
</div>
</div>
</div>
页脚:
<div>
footer
</div>
</body>
</html>
的style.css:
/*
Theme Name: Lester G
Author: Fyber ltd
*/
html, body{
width: 100%;
height: 100%;
background-color: blue;
}
的index.php:
<?php get_header(); ?>
<?php
if (have_posts()) :
while (have_posts()) :
the_post();
the_content();
endwhile;
endif;
?>
<?php get_footer(); ?>
这是我的所有内容你能看到什么问题吗?
答案 0 :(得分:2)
您应该使用wp_enqueue_style( 'main-style', get_stylesheet_uri() )
将functions.php中的默认style.css入队;