Preview:
/**************************************************************
-> Order team members alphabetically in the back end
 **************************************************************/
function set_post_order_in_admin($wp_query)
{

    global $pagenow;

    if (is_admin() && 'edit.php' == $pagenow && !isset($_GET['orderby']) && isset($_GET['post_type']) && $_GET['post_type'] == 'team-member') {

        $wp_query->set('orderby', 'title');
        $wp_query->set('order', 'ASC');
    }
}

add_filter('pre_get_posts', 'set_post_order_in_admin', 5);
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter