Skip to content

Instantly share code, notes, and snippets.

@Antoinebr
Created June 12, 2018 09:02
Show Gist options
  • Save Antoinebr/a2a0b316c658b713bac16100012b4d99 to your computer and use it in GitHub Desktop.
Save Antoinebr/a2a0b316c658b713bac16100012b4d99 to your computer and use it in GitHub Desktop.
WooCommerce pre-render
/*
| --------------------------------------------------------------------------
| Prerender the checkout page from the cart
| --------------------------------------------------------------------------
|
+*/
add_action( 'wp_head', function(){
global $woocommerce;
$checkout_url = $woocommerce->cart->get_checkout_url();
if(is_cart())
echo " <link rel='prerender' href='$checkout_url'> ";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment