• Resolved myCred

    (@designbymerovingi)


    I am looking to customize the User List on the admin side (wp-admin/users.php) in WordPress. I want to modify what user details are shown in the list. For example I have custom user meta’s that I want to include and I want to replace the “Posts” counter to my own counter (I am using custom post types).

    I know how to customize the list for custom post types and wanted to know if you can do the same thing with users.

    When customizing the post type list I use :

    add_action("manage_posts_custom_column", "book_custom_columns");
    add_filter("manage_edit-book_columns", "book_columns");

    and I was hoping there was a hook for the users. Anyone knows?

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

    (@designbymerovingi)

    found it.

    add_action("manage_users_custom_column","guild_members_custom_columns");
    add_filter("manage_users_columns", "guild_members_columns");
Viewing 1 replies (of 1 total)
  • The topic ‘Customizing the Users List’ is closed to new replies.