Created
February 6, 2020 08:53
-
-
Save femiyb/c2d76a6582ca6bee2f4b3bcfb1cc2c4e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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