这段代码过去工作得很好,但在更新Wordpress之后,它似乎不再工作了。我没有显示自定义链接。有什么想法吗?
function hook_lost_your_password ( $text ) {
if ($text == \'Lost your password?\'){
$text .= \'<br /><a href="/invitation/" class="neolog">Not a member? <span>Request an invitation.</span></a>\';
}
return $text;
}
add_filter( \'gettext\', \'hook_lost_your_password\' );