I'm going to try to explain this as best I can. I want to have a link appear on the page before the password is entered and have another link replace it when the correct password is entered and show the content of the page. So far, I have this code:
<?php if ( post_password_required() ) { ?>
<a href="http://link.com/">Link #1</a> // Link used when password not entered or wrong
<?php } else { ?>
<a href="http://link.com/">Link #2</a> // Link used when password entered correctly and shows content
<?php } ?>
Am I using the wrong conditional tag or is this not possible?