Home Forums WoodMart support forum ow can I preload font-awesome ? Reply To: ow can I preload font-awesome ?

#127581

Artem Temos
Keymaster

Try to replace the code with the following one

function add_rel_preload( $html, $handle, $href, $media ) {
	if ( is_admin() ) {
		return $html;
	}

	if ( 'font-awesome-css' === $handle || 'yith-wcwl-font-awesome' === $handle ) {
		return '<link rel="preload" as="style" onload="this.rel = \'stylesheet\'" id="' . $handle . '-css" href="' . $href . '" type="text/css" media="' . $media . '" />';

	}

	return $html;
}

add_filter( 'style_loader_tag', 'add_rel_preload', 10, 4 );