Skip to content

Instantly share code, notes, and snippets.

View mtorosian's full-sized avatar

Mike Torosian mtorosian

  • Fresno, California
View GitHub Profile
@mtorosian
mtorosian / functions.php
Created August 9, 2016 17:21 — forked from rogden/functions.php
Wordpress - Send email new post
<?php
// add to your theme's functions.php file
// _post can be any custom post type as well. I.E. if you have a book post type it would be 'save_post_book'
add_action( 'save_post_post', function( $post_ID, $post, $update ) {
// if it is an update and not a new post, return early
if ( $update ) return;
// a new post was created, send an email out