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

@@ -15,7 +15,6 @@ $defaults = array(
'columns' => null,
'show_full_table_link' => false,
'show_team_logo' => get_option( 'sportspress_table_show_logos', 'yes' ) == 'yes' ? true : false,
'show_caption' => false,
'link_posts' => get_option( 'sportspress_table_link_teams', 'no' ) == 'yes' ? true : false,
'sortable' => get_option( 'sportspress_enable_sortable_tables', 'yes' ) == 'yes' ? true : false,
'responsive' => get_option( 'sportspress_enable_responsive_tables', 'yes' ) == 'yes' ? true : false,
@@ -27,9 +26,7 @@ extract( $defaults, EXTR_SKIP );
$output = '<div class="sp-table-wrapper sp-scrollable-table-wrapper">';
if ( $show_caption ):
$output .= '<h4 class="sp-table-caption">' . get_the_title( $id ) . '</h4>';
endif;
$output .= '<h4 class="sp-table-caption">' . get_the_title( $id ) . '</h4>';
$output .= '<table class="sp-league-table sp-data-table' . ( $responsive ? ' sp-responsive-table' : '' ) . ( $sortable ? ' sp-sortable-table' : '' ) . ( $paginated ? ' sp-paginated-table' : '' ) . '" data-sp-rows="' . $rows . '">' . '<thead>' . '<tr>';