term_id; $term_meta = get_option( "taxonomy_$t_id" ); $address = sportspress_array_value( $term_meta, 'sp_address', '' ); $latitude = sportspress_array_value( $term_meta, 'sp_latitude', 0 ); $longitude = sportspress_array_value( $term_meta, 'sp_longitude', 0 ); $output .= '

' . __( 'Venue', 'sportspress' ) . '

'; $output .= '

' . $venue->name . '
' . $address . '

'; if ( $latitude != null && $longitude != null ) $output .= '
'; endforeach; return apply_filters( 'sportspress_event_venue', $output ); } }