get_option( 'sportspress_player_show_flags', 'yes' ) == 'yes' ? true : false, ); extract( $defaults, EXTR_SKIP ); $countries = SP()->countries->countries; $nationality = get_post_meta( $id, 'sp_nationality', true ); $current_team = get_post_meta( $id, 'sp_current_team', true ); $past_teams = get_post_meta( $id, 'sp_past_team', false ); $metrics = sp_get_player_metrics_data( $id ); $common = array(); if ( $nationality ): $country_name = sp_array_value( $countries, $nationality, null ); $common[ SP()->text->string('Nationality', 'player') ] = $country_name ? ( $show_nationality_flags ? '' . $nationality . ' ' : '' ) . $country_name : '—'; endif; $data = array_merge( $common, $metrics ); if ( $current_team ) $data[ SP()->text->string('Current Team', 'player') ] = '' . get_the_title( $current_team ) . ''; if ( $past_teams ): $teams = array(); foreach ( $past_teams as $team ): $teams[] = '' . get_the_title( $team ) . ''; endforeach; $data[ SP()->text->string('Past Teams', 'player') ] = implode( ', ', $teams ); endif; $output = '
' . '
'; foreach( $data as $label => $value ): $output .= '
' . $label . '
' . $value . '
'; endforeach; $output .= '
'; echo apply_filters( 'sportspress_player_metrics', $output );