Skip to content

Instantly share code, notes, and snippets.

@mikejolley
mikejolley / functions.php
Created July 2, 2016 13:21
WooCommerce - Redirect external products offsite (disable single listings)
<?php // Do not include this if already open!
/**
* Code goes in theme functions.php.
*/
add_action( 'template_redirect', 'redirect_external_products' );
function redirect_external_products() {
global $post;