Lets aborting both the CSS and JS asset loading
Last updated 4 years ago
$stop - when true, the CSS and JS files are not loaded
apply_filters('asp_load_css_js', $stop);
add_filter( 'asp_load_css_js', 'asp_stop_load_css_js', 10, 1 ); function asp_stop_load_css_js( $stop ) { if ( is_archive() ) return true; return false; }