Add Link to PHP message

时间:2020-10-24 作者:Blake Miller

这感觉像是一个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\');

1 个回复
SO网友:HK89

在函数中添加此代码。php文件

 function mito_login_message( $message ) {
        if ( empty($message) ){
            return "<p><a href=\'\'>hyperlink</a>  Please login to continue</strong></p>";
        } else {
            return $message;
        }
    }

add_filter( \'login_message\', \'mito_login_message\' );

相关推荐

Index.php和page.php的区别

我目前正在wordpress中开发一个主题,用于学习。要设置我的页面层次结构,我有以下内容:索引。php:所有网站页面的回退。php:博客页面,首页。php:静态首页。php:单个页面的默认回退。php:单贴子页面标题。php和页脚。我想知道索引之间的区别。php和一个页面。php应该显示?在我的索引上。php,我只有header();和页脚();功能在我的页面上。php中,我有一个带有标准循环的主内容div,该循环从wordpress输出我的页面帖子,不包括页眉和页脚函数我的索引和页面文件输出这样的内容