Guest User

Untitled

a guest
Apr 24th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <?php
  2. function soflyy_get_bp_name( $user_id ) {
  3. global $wpdb;
  4. $table = $wpdb->prefix . 'bp_xprofile_data';
  5.  
  6. $results = $wpdb->get_row( $wpdb->prepare( "SELECT `value` FROM `" . $table . "` WHERE `user_id` = '%d' AND `field_id` = '1' LIMIT 1", $user_id ) );
  7.  
  8. if ( !empty( $results->value ) ) {
  9. return $results->value;
  10. }
  11. return null;
  12. }
Add Comment
Please, Sign In to add comment