How to display text if profile fields are not filled?
How to display any text/content if all buddypress user profile fields are not filled?
Here is my code which retrieves field data if the field is filled by the user:
$fields = array('Field 1', 'Field 2', 'Field 3', 'Field 4', 'Field 5');
foreach ( $fields as $field) {
$data = xprofile_get_field_data($field);
if ($data) {
echo 'div class='. $field .' - '. $data .'/div';
}
}
// How to display here information if all 5 fields are not filled by user?
Topic profiles buddypress users Wordpress
Category Web