asp_load_js
Hook to prevent the plugin javascript files loading
apply_filters('asp_load_js', $stop);
Parameters
$stop - when true, the JS files are not loaded
add_filter( 'asp_load_js', 'asp_stop_load_js', 10, 1 );
function asp_stop_load_js( $stop ) {
if ( is_archive() )
return true;
return false;
}
Last updated