Documentation

wph/components/css_combine_code

Posted in: Getting Started (4) Plugin Options Explained (35) Actions / Filters (30) How To (14)      Code Example (15)  

This functionality is available for PRO version.

Name: wph/components/css_combine_code
Type: Filter
Arguments: $status

This filter can be used to force ignore on css combine.


        add_filter( 'wph/components/css_combine_code', 'custom_wph_components_css_combine_code' ); 
        function custom_wph_components_css_combine_code( $status )
            {
                
                $status = FALSE;
                
                return $status;
                   
            }
Share on FacebookShare on Google+Tweet about this on TwitterShare on LinkedIn
Scroll to top