Created
May 11, 2021 10:34
-
-
Save jjmontalban/d8773459a3f0f5ee3dea4d39cc086e21 to your computer and use it in GitHub Desktop.
Modificar el listado de usuarios en el panel de administración
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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