Thanks for your solution, @sinnerhp ??
Here are the Player List shortcode attributes for your reference:
array(
'id' => get_the_ID(),
'number' => -1,
'columns' => null,
'grouping' => null,
'orderby' => 'default',
'order' => 'ASC',
'show_all_players_link' => false,
'link_posts' => get_option( 'sportspress_list_link_players', 'yes' ) == 'yes' ? true : false,
'link_teams' => get_option( 'sportspress_list_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,
'paginated' => get_option( 'sportspress_list_paginated', 'yes' ) == 'yes' ? true : false,
'rows' => get_option( 'sportspress_list_rows', 10 )
);
You could add orderby and order to the shortcode like this:
[player_list id="123" orderby="goals" order="DESC"]
Hope this helps ??