Wordpress插件/发布帖子功能不起作用


Wordpress Plugin / publish post function not working

试图从教程中创建一个Wordpress插件,该插件会向文章作者发送一封电子邮件,确认他们的文章已经发布。这是代码

    add_action('publish_post', 'post_published_notification', 10, 2);
    function post_published_notification($ID, $post) {
    $email = get_the_author_meta('user_email', $post->$post_author);
    $subject = 'Published ' . $post->$post_title;
    $message = 'We just published your post' . $post->$post_title . 'take a look ' . get_permalink($ID);
    wp_mail($email, $subject, $message);

}

代码似乎是正确的,但当我发布一篇帖子时,没有发生任何事情,我想知道是不是因为我在本地主机WAMP服务器上创建插件,而不是在实时服务器上?不确定,请帮忙。

将插件上传到实时网站后,插件确实正常工作。所以在本地服务器上运行插件是个问题。