How to limit the number of posts a user can view based on status
Just giving you a general idea which may help you. You can try something like below in WordPress – 1) Add a functionality to have usermeta as active or pending e.g. update_user_meta($user_id, ‘_user_custom_status’, ‘active’); 2) Do not show any post for non logged in user. 3) On login, check for user with subscriber role and … Read more