Skip to content

Instantly share code, notes, and snippets.

@Archie22is
Created December 9, 2022 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Archie22is/a652558acdcf5d8e10caf82aa1aaa331 to your computer and use it in GitHub Desktop.
Save Archie22is/a652558acdcf5d8e10caf82aa1aaa331 to your computer and use it in GitHub Desktop.
Redirect WooCommerce Shop URL
<?php
// Redirect WooCommerce Shop URL
function shop_url_redirect() {
if( is_shop() ){
wp_redirect( home_url( '/custom-page/' ) ); // Assign custom internal page here
exit();
}
}
add_action( 'template_redirect', 'shop_url_redirect'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment