Remove column from user list at admin side in wordpress.
wordpress

Remove column from user list at admin side in wordpress.

KrikaSoft
14 Jan 2014 05:50

To remove any column from user list at admin side in wordpress follow the bellow code.

/* Huck action to call function */
add_action(‘manage_users_columns’,'remove_user_my_column’);

/* Function which is removing the username column from list*/
function remove_user_my_column($column_headers) {
unset($column_headers['username']);
return $column_headers;
}

Author

KrikaSoft
Hello, I'm
KrikaSoft

KrikaSoft offers innovative IT solutions and services to businesses worldwide. Specializing in Web development, Web customization, and Website design, we excel in Magento, WordPress, and other PHP frameworks. From Hybrid Application Development to seamless user experiences, trust us as your technology partner for reliable and cutting-edge solutions. Experience excellence with KrikaSoft!

Latest Post