WAMP:在wordpress上的网页上获取样式表

时间:2016-03-31 00:57:12

标签: css wordpress

the chrome dev tools - output from the conlost 我是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();

&GT?; 这是我的functions.php文件,用于上传样式表:

<?php
function add_theme_scripts() {
    wp_enqueue_style( 'main', get_stylesheet_uri(), false );
}
add_action("wp_enqueue_scripts", "add_theme_scripts");
?>

然而,我尝试通过头文件头部的blogifno上传样式,但它也不起作用,页面显示没有样式完成什么事情? css文件位于根文件夹中,没有任何子文件夹

1 个答案:

答案 0 :(得分:0)

Style.css应该在主题文件夹中,例如:wp-content / themes / your_theme / style.css。 也许这会有所帮助:Wordpress default stylesheet path