From cad627b28f243f429903315fdd1c766162c333ce Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Thu, 16 Oct 2014 13:50:48 +1100 Subject: [PATCH] Bold highlighted team name in table --- templates/league-table.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/templates/league-table.php b/templates/league-table.php index 928b9d27..c39064fd 100644 --- a/templates/league-table.php +++ b/templates/league-table.php @@ -117,10 +117,12 @@ foreach ( $data as $team_id => $row ): $name_class = ''; + $name = $before . $name . $after; + if ( $show_team_logo ): if ( has_post_thumbnail( $team_id ) ): $logo = get_the_post_thumbnail( $team_id, 'sportspress-fit-icon' ); - $name = '' . $before . $name . $after; + $name = '' . $name; $name_class .= ' has-logo'; endif; endif;