我是wordpress的新手,我正试图找到一个主题主样式表但是,我有问题,样式规则不适用于页面。 到目前为止,这是我的index.php文件:
<?php
get_header();
if (have_posts()):
while (have_posts()):
the_post();
the_title();
the_excerpt();
the_author();
endwhile;
endif;
get_sidebar();
get_footer();
?>
这是我的functions.php文件,用于上传样式表:
<?php
function add_theme_scripts() {
wp_enqueue_style( 'main', get_stylesheet_uri(), false );
}
add_action("wp_enqueue_scripts", "add_theme_scripts");
?>
无论我试图通过头文件头部的blogifno上传样式,但它也不起作用,页面显示根本没有样式 怎么了?