在当前的WordPress主题目录下的functions.php中,添加以下php代码:
代码如下 | 复制代码 |
function newPostNotify($post_ID) { if( wp_is_post_revision($post_ID) ) return; global $wpdb; $get_post_info = get_post($post_ID); if ( $get_post_info->post_status == 'publish' && $_POST['original_post_status'] != 'publish' ) { // 读数据库,获取所有用户的email $wp_user_email = $wpdb->get_results("SELECT DISTINCT user_email FROM $wpdb->users"); // 依次给每个Email发邮件 foreach ( $wp_user_email as $email ) { // 邮件标题:xx博客有新文章 $subject = 'xx博客有新文章'; // 邮件内容:新文章网址:+ URL $message = '新文章网址:' . get_permalink($post_ID); // 发邮件 wp_mail($email->user_email, $subject, $message); } } } // 钩子,一旦WordPress有新文章发布或文章被修改即刻执行newPostNotify函数 add_action('publish_post', 'newPostNotify'); |
这样就实现了你发了新文件就会邮件通知你的伙伴们过来看哦。
时间: 2024-10-11 12:42:50