Welcome Message
-
Hello,
I have add this function to my functions.php but since the last Update it doesn´t work. Before it works well.
Any Idea???
add_action( ‘user_register’, ‘fep_cus_user_register_send_messaage’, 10, 1 );
function fep_cus_user_register_send_messaage( $user_id ){
if ( $user_id < 1 )
return;
if ( ! function_exists( ‘fep_send_message’ ) )
return;// Prepare message data
$message = array(
‘message_title’ => ‘Willkommen ‘ . fep_get_userdata( $user_id, ‘display_name’, ‘id’ ), //change with message title
‘message_content’ => ‘Das hier ist dein persönliches Postfach aufMessage…..’, //change with message content
‘message_to_id’ => $user_id
);$override = array(
‘post_author’ => 1, //change with message sender id
);// Send message
fep_send_message( $message, $override );
}
The topic ‘Welcome Message’ is closed to new replies.