Show league table caption by default

This commit is contained in:
Brian Miyaji
2014-05-10 22:45:41 +10:00
parent 9a5cc58072
commit a1462b46a3
3 changed files with 2 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ class SP_Widget_League_Table extends WP_Widget {
if ( $title )
echo $before_title . $title . $after_title;
echo '<div id="sp_league_table_wrap">';
sp_get_template( 'league-table.php', array( 'id' => $id, 'number' => $number, 'columns' => $columns, 'show_full_table_link' => $show_full_table_link, 'show_team_logo' => $show_team_logo, 'show_caption' => true ) );
sp_get_template( 'league-table.php', array( 'id' => $id, 'number' => $number, 'columns' => $columns, 'show_full_table_link' => $show_full_table_link, 'show_team_logo' => $show_team_logo ) );
echo '</div>';
echo $after_widget;
}