Created
July 23, 2015 08:45
-
-
Save woogist/3e840cfffec735353a97 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
// Get current user ID | |
$user_id = get_current_user_id(); | |
// Check if the user is member of the plan 'gold' | |
if ( wc_memberships_is_user_active_member( $user_id, 'gold' ) ) { | |
echo 'This is a special message only for Gold members!'; | |
} else { | |
echo 'I\'m sorry, you are not a gold member. There's nothing here for you!'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment