Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Created May 11, 2021 10:34
Show Gist options
  • Save jjmontalban/d8773459a3f0f5ee3dea4d39cc086e21 to your computer and use it in GitHub Desktop.
Save jjmontalban/d8773459a3f0f5ee3dea4d39cc086e21 to your computer and use it in GitHub Desktop.
Modificar el listado de usuarios en el panel de administración
<?php
/**
* @snippet v Alter the primary column in edit.php table(s)
* @author https://developer.wordpress.org/reference/hooks/list_table_primary_column/
*/
function my_list_table_primary_column( $default, $screen ) {//
$default = 'name';
return $default;
}
add_filter( 'list_table_primary_column', 'my_list_table_primary_column', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment