Skip to content

Instantly share code, notes, and snippets.

@TheRealSimon42
Last active April 16, 2022 22:27
Show Gist options
  • Save TheRealSimon42/a61d8f46896a3798a82fd43937083a7d to your computer and use it in GitHub Desktop.
Save TheRealSimon42/a61d8f46896a3798a82fd43937083a7d to your computer and use it in GitHub Desktop.
Function to Prealod CSS FIles in WordPress via Function
/** Head Style Preloading **/
function style_preloading_preload_key_requests() { ?>
<link rel="preload" as="style" href="/wp-content/themes/navigation-pro/style.css" crossorigin="anonymous">
<?php }
add_action( 'wp_head', 'style_preloading_preload_key_requests' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment