Wordpress - 当其他用户喜欢他们的帖子时向用户发送电子邮件

Wordpress - email users when their posts liked by the other users

我正在使用“simple like system”插件,我有这个功能来检查用户何时 post 被其他用户喜欢,我如何发送电子邮件到 post作者的 post 是什么时候被其他人喜欢的?

类似于“嘿{Post作者姓名},{喜欢post}的用户名喜欢你的post{post标题}”{Post permalink},访问 {username} {author url} 的个人资料。

/**
 * Utility to test if the post is already liked
 * @since    0.5
 */
function already_liked( $post_id, $is_comment ) {
    $post_users = NULL;
    $user_id = NULL;
    if ( is_user_logged_in() ) { // user is logged in
        $user_id = get_current_user_id();
        $post_meta_users = ( $is_comment == 1 ) ? get_comment_meta( $post_id, "_user_comment_liked" ) : get_post_meta( $post_id, "_user_liked" );
        if ( count( $post_meta_users ) != 0 ) {
            $post_users = $post_meta_users[0];
        }
    } else { // user is anonymous
        $user_id = sl_get_ip();
        $post_meta_users = ( $is_comment == 1 ) ? get_comment_meta( $post_id, "_user_comment_IP" ) : get_post_meta( $post_id, "_user_IP" ); 
        if ( count( $post_meta_users ) != 0 ) { // meta exists, set up values
            $post_users = $post_meta_users[0];
        }
    }

    if ( is_array( $post_users ) && in_array( $user_id, $post_users ) ) {
        return true;
    } else {
        return false;
    }
} // already_liked()

这个 post 用户喜欢

/**
 * Utility retrieves post meta user likes (user id array), 
 * then adds new user id to retrieved array
 * @since    0.5
 */
function post_user_likes( $user_id, $post_id, $is_comment ) {
    $post_users = '';
    $post_meta_users = ( $is_comment == 1 ) ? get_comment_meta( $post_id, "_user_comment_liked" ) : get_post_meta( $post_id, "_user_liked" );
    if ( count( $post_meta_users ) != 0 ) {
        $post_users = $post_meta_users[0];
    }
    if ( !is_array( $post_users ) ) {
        $post_users = array();
    }
    if ( !in_array( $user_id, $post_users ) ) {
        $post_users['user-' . $user_id] = $user_id;
    }
    return $post_users;
} // post_user_likes()

这是我尝试执行的操作,但整个功能停止工作并且未发送电子邮件。

我添加了 do_action 和 add_action,我不知道为什么,但我看到了另一个代码片段。

上面的原函数!!

function already_liked( $post_id, $is_comment ) {
    $post_users = NULL;
    $user_id = NULL;
    if ( is_user_logged_in() ) { // user is logged in
        $user_id = get_current_user_id();
        $post_meta_users = ( $is_comment == 1 ) ? get_comment_meta( $post_id, "_user_comment_liked" ) : get_post_meta( $post_id, "_user_liked" );
        if ( count( $post_meta_users ) != 0 ) {
            $post_users = $post_meta_users[0];
        }
    } else { // user is anonymous
        $user_id = sl_get_ip();
        $post_meta_users = ( $is_comment == 1 ) ? get_comment_meta( $post_id, "_user_comment_IP" ) : get_post_meta( $post_id, "_user_IP" ); 
        if ( count( $post_meta_users ) != 0 ) { // meta exists, set up values
            $post_users = $post_meta_users[0];
        }
    }

    $user = get_userdata($user_id);
    $user_url = get_author_posts_url( $user_id );
    $recipient = get_userdata($post_users);
    $recipient_email = $recipient->user_email;
    $body = sprintf('%s Liked your post!'. "\n\n", $user->display_name );
    $body .= sprintf( 'Visit Artist Page: %s', $user_url );
    wp_mail( $recipient_email , 'New Likes!', $body );

    add_action('post_like_user', $user_id, $post_users );

    if ( is_array( $post_users ) && in_array( $user_id, $post_users ) ) {

            do_action( 'post_like_user', $user_id, $post_users );

        return true;

    } else {
        return false;
    }
} // already_liked()

根据你使用Wordpress的样子,我建议你使用Wordpress默认的电子邮件工具。

wp_mail( string|array $to, string $subject, string $message, string|array $headers = '', string|array $attachments = array() );

参考:(开发者资源)https://developer.wordpress.org/reference/functions/wp_mail/