Skip to content

Instantly share code, notes, and snippets.

View ditikos's full-sized avatar
🎯
Focusing

Panagiotis Chalatsakos ditikos

🎯
Focusing
View GitHub Profile
@ditikos
ditikos / gist:d4571d8618345393505d
Last active August 29, 2015 14:07
Wordpress: Post to an e-mail when you publish for the first time
// Συνδεση στο hook που ανιχνεύει τις αλλαγές των post status
add_action('transition_post_status', 'post_to_list2', 10, 3);
function post_to_list2($new_status, $old_status, $post) {
// Σε ενα νέο post το post status είναι πάντα draft->publish
// Σε ενα ανανεωμένο post το post status είναι πάντα publish->publish
if ('publish' === $old_status)
return; // new posts only!
if ('publish' !== $new_status)