Forked from kimcoleman/my_template_redirect_network_require_membership_access.php
Created
November 10, 2022 16:07
-
-
Save dparker1005/05cd5626f31182710f4b198c8d4255bf to your computer and use it in GitHub Desktop.
Redirects members-only content to the Membership Levels page on the Main Network Site if a user is logged out or not a member.
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 | |
/* | |
* Redirects members-only content to the Membership Levels page on the Main Network Site | |
* if a user is logged out or not a member. | |
*/ | |
function my_template_redirect_network_require_membership_access() { | |
if ( function_exists( 'pmpro_has_membership_access' ) && ! pmpro_has_membership_access() ) { | |
wp_redirect( network_site_url( 'levels' ) ); | |
exit; | |
} | |
} | |
add_action( 'template_redirect', 'my_template_redirect_network_require_membership_access' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment