Put DoB column at the end

This commit is contained in:
savvasha
2019-09-13 07:05:43 +03:00
parent 6559c67f84
commit 26795db815
2 changed files with 6 additions and 6 deletions

View File

@@ -23,7 +23,6 @@ if ( class_exists( 'WP_Importer' ) ) {
$this->import_page = 'sp_player_csv';
$this->import_label = __( 'Import Players', 'sportspress' );
$this->columns = array(
'post_date' => __( 'Date of Birth', 'sportspress' ),
'sp_number' => __( 'Squad Number', 'sportspress' ),
'post_title' => __( 'Name', 'sportspress' ),
'sp_position' => __( 'Positions', 'sportspress' ),
@@ -31,6 +30,7 @@ if ( class_exists( 'WP_Importer' ) ) {
'sp_league' => __( 'Leagues', 'sportspress' ),
'sp_season' => __( 'Seasons', 'sportspress' ),
'sp_nationality' => __( 'Nationality', 'sportspress' ),
'post_date' => __( 'Date of Birth', 'sportspress' ),
);
parent::__construct();
}