将下列代码放到functions.php文件中:
/** 给WordPress登陆页面添加文字提示框
* WordPress日记 https://wparticle.cn
*/
function mx_add_login_message( $message ) {
if ( empty($message) ){
return "<p class='message'>欢迎光临我们的网站,请先进行登陆!</p>";
} else {
return $message;
}};
add_filter( 'login_message', 'mx_add_login_message' );
* WordPress日记 https://wparticle.cn
*/
function mx_add_login_message( $message ) {
if ( empty($message) ){
return "<p class='message'>欢迎光临我们的网站,请先进行登陆!</p>";
} else {
return $message;
}};
add_filter( 'login_message', 'mx_add_login_message' );
如果您想用错误提示的状态进行提示,把P标签中的message改成error即可。
2、WordPress用户注册页面怎么添加自定义文字提示
WordPress用户注册页面,如要在注册页面添加一些提示,或用户协议等信息,在当前WordPress主题的函数文件functions.php添加以下代码即可。
//注册页添加自定义说明
add_action('register_form', 'register_message');
function register_message() {
$html = '
<div style="margin:10px 0;border:1px solid #ff4747;padding:10px">
<p style="margin:5px 0;">
温馨提示:这里根据自身需求调整哦!
<a href="https://wparticle.cn" target="_blank" rel="noopener">注册协议</a>
</p>
</div>';
echo $html;
}
add_action('register_form', 'register_message');
function register_message() {
$html = '
<div style="margin:10px 0;border:1px solid #ff4747;padding:10px">
<p style="margin:5px 0;">
温馨提示:这里根据自身需求调整哦!
<a href="https://wparticle.cn" target="_blank" rel="noopener">注册协议</a>
</p>
</div>';
echo $html;
}
3、警告文本
//自定义登录页底部信息
function custom_html()
{
echo '<p style="text-align:center;color:#ff0000; ">注意:这是一段警告,这是一段警告</p>';
}
add_action('login_footer', 'custom_html');
function custom_html()
{
echo '<p style="text-align:center;color:#ff0000; ">注意:这是一段警告,这是一段警告</p>';
}
add_action('login_footer', 'custom_html');