Specific Content on pages based on user
You can separate your users with roles, with different capabilities, and you can add custom roles to your theme. Use the capabilities of the users to filter the content you show them with the WP functions current_user_can() and is_user_logged_in(). Here you have an example: if(is_user_logged_in() && current_user_can( ‘read’ )){ // Show something }else{ if(is_user_logged_in()){ // … Read more