新版本的WordPress会有一个功能就是可以在function.php中加入任何代码,下面我来介绍在WordPress发布新文章Email通知注册用户功能,代码很简单大家可参考,在当前的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');
这样就实现了你发了新文件就会邮件通知你的伙伴们过来看.
新闻热点
疑难解答
图片精选