Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function wpf_custom_access( $can_access, $user_id, $post_id ) {
- if ( wp_fusion()->user->has_tag( 'Cancelled Member', $user_id ) ) {
- return false;
- } else {
- return $can_access;
- }
- }
- add_filter( 'wpf_user_can_access', 'wpf_custom_access', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement