0 ) { // We've been passed a user ID. Need to get contact ID based on user_id $contact_query = new WP_Query( array( 'post_type' => 'contact', 'meta_key' => '_user_id', 'meta_value' => $user_id, 'fields' => 'ids', 'posts_per_page' => 1 ) ); if ( $contact_query->have_posts() ) { while ( $contact_query->have_posts() ) { $contact_query->the_post(); $this->get_contact( get_the_ID() ); } } wp_reset_postdata(); } else { if ( $id > 0 ) { $this->get_contact( $id ); } } } /** * Gets a contact from the database. * * @access public * @param int $id (default: 0) * @return bool */ public function get_contact( $id = 0 ) { if ( ! $id ) { return false; } if ( $result = get_post( $id ) ) { $this->populate( $result ); return true; } return false; } /** * __isset function. * * @access public * @param mixed $key * @return bool */ public function __isset( $key ) { if ( ! $this->id ) { return false; } return metadata_exists( 'post', $this->id, '_' . $key ); } /** * __get function. * * @access public * @param mixed $key * @return mixed */ public function __get( $key ) { // Get values or default if not set $value = get_post_meta( $this->id, $key, true ); if ($value == '') { $value = get_post_meta( $this->id, '_' . $key, true ); } return $value; } /** * Populates a contact from the loaded post data. * * @access public * @param mixed $result * @return void */ public function populate( $result ) { // Standard post data $this->id = $result->ID; $this->post_title = $result->post_title; $this->post_status = $result->post_status; } /** * Get the full formatted address * * @access public * @return string */ public function get_formatted_full_address( $separator = ', ' ) { // Standard post data $return = ''; $company_name = $this->_company_name; if ($company_name != '') { $return .= $company_name; } $address_name_number = $this->_address_name_number; if ($address_name_number != '') { if ($return != '') { $return .= $separator; } $return .= $address_name_number; } $address_street = $this->_address_street; if ($address_street != '') { if ($return != '') { $return .= ' '; } $return .= $address_street; } $address_two = $this->_address_two; if ($address_two != '') { if ($return != '') { $return .= $separator; } $return .= $address_two; } $address_three = $this->_address_three; if ($address_three != '') { if ($return != '') { $return .= $separator; } $return .= $address_three; } $address_four = $this->_address_four; if ($address_four != '') { if ($return != '') { $return .= $separator; } $return .= $address_four; } $address_postcode = $this->_address_postcode; if ($address_postcode != '') { if ($return != '') { $return .= $separator; } $return .= $address_postcode; } return $return; } /** * Get the dear field if populated, fallback to the full name if not * * @access public * @return string */ public function dear() { $dear = $this->_dear; return !empty($dear) ? $dear : $this->post_title; } }