Forums

[resolved] Customizing the Users List (2 posts)

  1. designbymerovingi
    Member
    Posted 1 year ago #

    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?

  2. designbymerovingi
    Member
    Posted 1 year ago #

    found it.

    add_action("manage_users_custom_column","guild_members_custom_columns");
    add_filter("manage_users_columns", "guild_members_columns");

Topic Closed

This topic has been closed to new replies.

About this Topic