如何将Style排在style.css之前

时间:2013-04-17 作者:vonholmes

我如何排队。样式之前的css文件。是否加载了css?或设置默认样式。css依赖于另一个。css文件?

我正在加载一个。css重置,哪种样式。css将覆盖。

以下是我所拥有的:

add_action(\'wp_enqueue_scripts\', \'load_css_files\');

function load_css_files() {
    wp_register_style( \'normalize\', get_template_directory_uri() . \'/css/normalize.css\');
    wp_enqueue_style( \'normalize\' );
}
但是,这是在样式之后加载的。css。

1 个回复
最合适的回答,由SO网友:fuxia 整理而成

style.css 也是,设置normalize 作为依赖项:

if ( ! is_admin() )
{
    // Register early, so no on else can reserve that handle
    add_action( \'wp_loaded\', function()
    {
        wp_register_style(
            \'normalize\',
            // parent theme
            get_template_directory_uri() . \'/css/normalize.css\'
        );
        wp_register_style(
            \'theme_name\',
            // current theme, might be the child theme
            get_stylesheet_uri(), [ \'normalize\' ]
        );
    });
    add_action( \'wp_enqueue_scripts\', function()
    {
        wp_enqueue_style( \'theme_name\' );
    });
}
WordPress将首先自动加载依赖项theme_name 已打印。

结束

相关推荐

有没有将CMS图片与css结合使用的好方法

我正在构建一个响应迅速的wordpress主题,允许将自定义横幅图像上载到每个页面。然而,由于主题的响应性,我需要使用css将图像设置为背景图像,以实现正确的效果。但是,我不想在html标记中随意添加css样式。是否可以从页面模板中提取图像url并将其动态放入css文件中?我在这里找到了一个没有滑块功能的示例:http://emporiumpies.com/看起来他们正在对css文件中的图像进行硬编码,但这正是我想要的视觉效果。我只需要弄清楚如何将其绑定到wordpress CMS中。任何帮助都将不胜感激