• Is there a way to permanently sort the User listing in the wp-admin by the UserID?

    I have tried a number of plugins and have been able to SHOW the user ID, but not sort by it.

    Thanks

Viewing 1 replies (of 1 total)
  • Thread Starter StormCloud

    (@daveupston)

    For now, i’ve altered class-wp-users-list-table.php at line 61

    //if ( isset( $_REQUEST['orderby'] ) )
    	$args['orderby'] = 'id';//$_REQUEST['orderby'];
    
    //if ( isset( $_REQUEST['order'] ) )
    	$args['order'] = 'desc';//$_REQUEST['order'];

    Its a dirty hack, but serving it’s purpose for now. I’d still like to know a better way around it if anyone can help.

Viewing 1 replies (of 1 total)

The topic ‘Sort Users by ID in Admin’ is closed to new replies.