Created
February 29, 2020 08:29
-
-
Save msaari/7b27529fc9411efcdc120cf8f390747a to your computer and use it in GitHub Desktop.
Mailia ylläpidolle, kun tulee uusi artikkeli "pending"-tilaan
This file contains hidden or 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
<?php | |
add_action( 'transition_post_status', 'mailia_pendingistä', 10, 3 ); | |
function mailia_pendingistä( $vanha_status, $uusi_status, $post_id ) { | |
if ( 'pending' === $uusi_status ) { | |
$post = get_post( $post_id ); | |
wp_mail( | |
get_bloginfo( 'admin_email' ), | |
'Uusi hyväksymistä odottava artikkeli', | |
"{$post->post_title}\n\n{$post->post_content}" | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment