Skip to content

Instantly share code, notes, and snippets.

@iMazed
Created February 15, 2015 11:15
Show Gist options
  • Save iMazed/39aa5da50471cb74173b to your computer and use it in GitHub Desktop.
Save iMazed/39aa5da50471cb74173b to your computer and use it in GitHub Desktop.
// Add to functions.php if you want a redirect to happen when the store is closed.
// Comment out when store needs to open again
add_action('template_redirect','store_closed');
function store_closed(){
if (!is_admin() && is_woocommerce()){
wp_redirect('/store-closed/'); // Change store-closed to permalink you'd like to use
exit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment