/**
* 新用户注册时自动用id为1的用户发送私信
*/
function auto_send_private($new_user_id) {
// 检查是否是新用户,并确保用户ID为1存在
$send_user_id = 1; // 假设用户1存在
// 获取私信内容
$msg_content = '欢迎新用户注册!';
// 定义私信参数
$msg_args = array(
'send_user' => $send_user_id,
'receive_user' => $new_user_id, // 新用户ID
'content' => $msg_content,
'parent' => '',
'status' => '',
'meta' => '',
'other' => '',
);
// 发送私信
$msg = Zib_Private::add($msg_args);
}
add_action('user_register', 'auto_send_private');
没有回复内容