Skip to content

Instantly share code, notes, and snippets.

@pattihis
Last active February 8, 2022 11:24
Show Gist options
  • Save pattihis/e8ca1618d273e4f8a233324117aa967a to your computer and use it in GitHub Desktop.
Save pattihis/e8ca1618d273e4f8a233324117aa967a to your computer and use it in GitHub Desktop.
Wordpress - Redirect home page to Shop
<?php
// Put this in functions.php
add_action( 'template_redirect', function() {
if( is_home() or is_front_page() ) {
$url = esc_url(home_url( '/shop/'));
wp_redirect($url);
exit();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment