Last active
June 1, 2016 09:55
-
-
Save bryceadams/ee0a1c65d8ecf6015bb6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function listing_published_send_email($post_id) { | |
$post = get_post($post_id); | |
$author = get_userdata($post->post_author); | |
$message = " | |
Hi ".$author->display_name.", | |
Your listing, ".$post->post_title." has just been approved at ".get_permalink( $post_id ).". Well done! | |
"; | |
wp_mail($author->user_email, "Your job listing is online", $message); | |
} | |
add_action('publish_job_listing', 'listing_published_send_email'); |
@kleampa this version should fix that: https://gist.github.com/danjjohnson/b6af263d896fb34f713a149edee45f52
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should know this action is triggered anytime when a published job is edited.