Skip to content

Instantly share code, notes, and snippets.

@tiendungdev
Created August 14, 2021 03:24
Show Gist options
  • Save tiendungdev/e2d5d1588d5b44c45c092c38c5a27b3e to your computer and use it in GitHub Desktop.
Save tiendungdev/e2d5d1588d5b44c45c092c38c5a27b3e to your computer and use it in GitHub Desktop.
Preload Image WP
function preload_featured_image(){
if (has_post_thumbnail()) {
$attachment_image = wp_get_attachment_url( get_post_thumbnail_id() );
echo '<link rel="preload" as="image" href="'.$attachment_image.'">';
}
}
add_action('wp_head', 'preload_featured_image');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment