Advertisement
imath

List users that has not activated their account

Sep 24th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <?php
  2.  
  3. function bp_rc_list_not_activated_users() {
  4.     global $wpdb;
  5.    
  6.     if( is_multisite() ) {
  7.         return $wpdb->get_results("SELECT user_email, activation_key FROM {$wpdb->signups} WHERE active = 0", OBJECT);
  8.     } else {
  9.         return $wpdb->get_results("SELECT user_email, meta_value as activation_key, user_id FROM {$wpdb->usermeta} m LEFT JOIN {$wpdb->users} a ON(m.user_id = a.ID)  WHERE meta_key = 'activation_key'", OBJECT);
  10.     }
  11. }
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement