How do I send notification on post publication in WordPress?

Where in the WordPress code can I add my own functionality to send notifications when a post is published by the moderator?

Related posts

Leave a Reply

1 comment

  1. Your theme’s functions.php file.

    function your_callback() {
        global $post;
    // Code here
    }
    add_action( 'draft_to_publish', 'your_callback' );