flip flopping home and away?
This commit is contained in:
@@ -152,7 +152,7 @@ $identifier = uniqid( 'eventlist_' );
|
||||
switch ( $title_format ) {
|
||||
case 'homeaway':
|
||||
if ( sp_column_active( $usecolumns, 'event' ) ) {
|
||||
echo '<th class="data-home">' . esc_attr__( 'Home', 'sportspress' ) . '</th>';
|
||||
echo '<th class="data-away">' . esc_attr__( 'Away', 'sportspress' ) . '</th>';
|
||||
}
|
||||
|
||||
if ( 'combined' == $time_format && sp_column_active( $usecolumns, 'time' ) ) {
|
||||
@@ -163,7 +163,7 @@ $identifier = uniqid( 'eventlist_' );
|
||||
}
|
||||
|
||||
if ( sp_column_active( $usecolumns, 'event' ) ) {
|
||||
echo '<th class="data-away">' . esc_attr__( 'Away', 'sportspress' ) . '</th>';
|
||||
echo '<th class="data-home">' . esc_attr__( 'Home', 'sportspress' ) . '</th>';
|
||||
}
|
||||
|
||||
if ( in_array( $time_format, array( 'separate', 'time' ) ) && sp_column_active( $usecolumns, 'time' ) ) {
|
||||
@@ -322,9 +322,13 @@ $identifier = uniqid( 'eventlist_' );
|
||||
|
||||
switch ( $title_format ) {
|
||||
case 'homeaway':
|
||||
$away_team = null;
|
||||
$home_team = null;
|
||||
|
||||
if ( sp_column_active( $usecolumns, 'event' ) ) {
|
||||
$team = array_shift( $teams_array );
|
||||
echo '<td class="data-home' . esc_attr( $team_class ) . '" itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam" data-label="' . esc_attr__( 'Home', 'sportspress' ) . '">' . wp_kses_post( $team ) . '</td>';
|
||||
$away_team = array_shift( $teams_array );
|
||||
$home_team = array_shift( $teams_array );
|
||||
echo '<td class="data-away' . esc_attr( $team_class ) . '" itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam" data-label="' . esc_attr__( 'Away', 'sportspress' ) . '">' . wp_kses_post( $away_team ) . '</td>';
|
||||
}
|
||||
|
||||
if ( 'combined' == $time_format && sp_column_active( $usecolumns, 'time' ) ) {
|
||||
@@ -358,8 +362,7 @@ $identifier = uniqid( 'eventlist_' );
|
||||
}
|
||||
|
||||
if ( sp_column_active( $usecolumns, 'event' ) ) {
|
||||
$team = array_shift( $teams_array );
|
||||
echo '<td class="data-away' . esc_attr( $team_class ) . '" itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam" data-label="' . esc_attr__( 'Away', 'sportspress' ) . '">' . wp_kses_post( $team ) . '</td>';
|
||||
echo '<td class="data-home' . esc_attr( $team_class ) . '" itemprop="competitor" itemscope itemtype="http://schema.org/SportsTeam" data-label="' . esc_attr__( 'Home', 'sportspress' ) . '">' . wp_kses_post( $home_team ) . '</td>';
|
||||
}
|
||||
|
||||
if ( in_array( $time_format, array( 'separate', 'time' ) ) && sp_column_active( $usecolumns, 'time' ) ) {
|
||||
|
||||
Reference in New Issue
Block a user