Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created February 6, 2020 08:53
Show Gist options
  • Save femiyb/c2d76a6582ca6bee2f4b3bcfb1cc2c4e to your computer and use it in GitHub Desktop.
Save femiyb/c2d76a6582ca6bee2f4b3bcfb1cc2c4e to your computer and use it in GitHub Desktop.
<?php
function my_redirect_non_members_example() {
// Check if a non-member is trying to access any other page besides the above or home page.
if ( is_shop() && ! pmpro_hasMembershipLevel() ) {
wp_redirect( home_url('login') ); //redirect to home page. Change home_url() to home_url( '/page-slug' ) to redirect to specific page.
exit;
}
}
add_action( 'template_redirect', 'my_redirect_non_members_example' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment