I understand that you want subscribers to see only the articles that they wrote themselves, when they visit the website (frontend). But:
Do people have to be logged in to read articles?
- If not, then your subscriber will only have to log out to read the other articles anyway.
- If yes, then why would anybody author something if they are the only ones that can see what they wrote? (because each subscriber only sees their own, meaning nobody else will see what they wrote).
I’m guessing that you don’t have to be logged in to read, which means #1 above, that they only have to log out to see what you’re trying to hide from them.
You could modify the post template (php) (in your child theme) to include a verification where the current user is not logged in or if they are logged in, they are the author. The WordPress functions: wp_get_current_user() and get_the_author_meta() would probably play a role.