Disabling CSS

To disable the CSS for Highlight and Share, please use the following filter: has_load_css.

The filter returns a boolean.

Example code for this filter is:

add_filter(
	'has_load_css',
	function( $load_css ) {
		return false;
	}
);

Last updated