BP_XProfile_Data_Template::the_profile_field()
Set up the profile fields.
Description
Source
File: bp-xprofile/classes/class-bp-xprofile-data-template.php
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | public function the_profile_field() { global $field ; $field = $this ->next_field(); // Valid field values of 0 or '0' get caught by empty(), so we have an extra check for these. See #BP5731. if ( ! empty ( $field ->data ) && ( ! empty ( $field ->data->value ) || ( '0' === $field ->data->value ) ) ) { $value = maybe_unserialize( $field ->data->value ); } else { $value = false; } if ( ! empty ( $value ) || ( '0' === $value ) ) { $this ->field_has_data = true; } else { $this ->field_has_data = false; } } |
Changelog
Version | Description |
---|---|
BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.