当有人发布到我的博客时,管理员发送电子邮件通知的代码是什么

时间:2014-02-18 08:19:26

标签: php wordpress

我尝试了这段代码但没有任何反应

add_action('comment_post', function() {
    $email = get_bloginfo('admin_email');
    wp_mail(
        $email,
        'New Comment Posted',
        'A new comment has been left on your blog.'
    );
});

0 个答案:

没有答案