我会尽力解释这个问题。我希望在输入密码之前在页面上显示一个链接,并在输入正确的密码时显示另一个链接替换它并显示页面的内容。到目前为止,我有这段代码:
<?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 } ?>
我使用错误的条件标签还是不可能?