/ Published in: PHP
Send an email to all registered users when a post is published, for wordpress 3.1+
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/** * Automatically Notify Your Members on New Posts * Send an email to all registered users when a post is published, for wordpress 3.1+ * Simply place this code into your functions.php file. * source : http://wp-snippets.com/575/automatically-notify-your-members-on-new-posts/ */ function email_members($post_ID) { //global $wpdb; //$usersarray = $wpdb->get_results("SELECT user_email FROM $wpdb->users;"); $usersarray = $wp_user_search->get_results(); $arrUsers[] = $arr[$iU]->user_email; } // for mail($users, "New post notification : " . get_bloginfo('name') , "A new post has been published on " . get_bloginfo('siteurl') ); return $post_ID; } add_action('publish_post', 'email_members');