Skip to content

Instantly share code, notes, and snippets.

@joshuacharleslake
Created September 28, 2016 14:44
Show Gist options
  • Save joshuacharleslake/84be06e35bdff711eb1d1c7cdc7bbc54 to your computer and use it in GitHub Desktop.
Save joshuacharleslake/84be06e35bdff711eb1d1c7cdc7bbc54 to your computer and use it in GitHub Desktop.
wordpress redirect function
function redirect_unwanted_shop_page(){
if (is_woocommerce('shop')) {
wp_redirect( home_url() );
exit;
}
}
add_action('template_redirect','redirect_unwanted_shop_page');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment