这感觉像是一个noob问题,我找不到关于如何做到这一点的参考文献。但是我在默认的WP登录页面中添加了一条自定义消息。
我想在文本中添加超链接(到前端的支持页)。我该怎么做呢?
function mito_login_message( $message ) {
if ( empty($message) ){
return "<p>To log in, please use the same email address you used to confirm your participation in this virtual meeting. The password for the event can be found in the reminder emails you have received from the MITO Events Team over the past few days.</p>";
} else {
return $message;
}
}添加过滤器(\'login\\u message\',\'mito\\u login\\u message\');