Peer-reviewed code snippets that anyone can edit
A wiki for useful code snippets
is_subscriber for WordPress checks if user is a subscriber only
function is_subscriber() {
    global $current_user;
    return $current_user->caps[ 'subscriber' ];
}