Ordering Wordpress Stylesheets?

前端 未结 4 1632
北恋
北恋 2020-12-17 10:57

I have a wordpress theme with a stylesheet that needs to be loaded last, since plugin css are interfering with my theme. I was wondering if there was some type of function I

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-17 11:43

    when you enqueue your stylesheets, use a higher priority, e.g.:

    add_action( 'wp_enqueue_scripts', array(&$this, 'theme_styles'), 99 );
    

    If some plugins have hooks on 'wp_print_styles', then you have to use it instead, as 'wp_print_styles' will be written after 'wp_enqueue_scripts', iirc.

    And as you have complete control over your theme, you also could include your styles directly into header.php, if the hassle with the actions isn't worth time...

提交回复
热议问题