我假设您添加到函数中的代码。php是“the\\u password\\u form”的过滤器,您可以获得如下内容:
function my_protected_post_form () {
$myCustomizedFormCode = \'<form action=....\'
return $myCustomizedFormCode;
}
add_filter (\'the_password_form\', \'my_protected_post_form\');
因此,在自定义表单代码字符串中向用户提供说明的地方,只需要一些简单的HTML来提供所需的链接。例如:
\'[...]To view this protected post, enter the password below, or <a href="http://example.com/passwordsignup">request a password</a>.[...]\'