Title: manage_users-network_custom_column
Published: April 17, 2025
Last modified: May 20, 2026

---

# apply_filters( ‘manage_users-network_custom_column’, string $output, string $column_name, int $user_id )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#wp--skip-link--target)

Filters the display output of custom columns in the Network Users list table.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#parameters)󠁿

 `$output`string

Custom column output. Default empty.

`$column_name`string

Name of the custom column.

`$user_id`int

ID of the currently-listed user.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#source)󠁿

    ```php
    echo apply_filters( 'manage_users-network_custom_column', $column_output, $column_name, $user->ID );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-admin/includes/class-wp-ms-users-list-table.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-admin/includes/class-wp-ms-users-list-table.php#L481)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-admin/includes/class-wp-ms-users-list-table.php#L481-L481)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#related)󠁿

| Used by | Description | 
| [WP_MS_Users_List_Table::column_default()](https://developer.wordpress.org/reference/classes/wp_ms_users_list_table/column_default/)`wp-admin/includes/class-wp-ms-users-list-table.php` |

Handles the default column output.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/manage_users-network_custom_column/?output_format=md#changelog)󠁿

| Version | Description | 
| [6.8.0](https://developer.wordpress.org/reference/since/6.8.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fmanage_users-network_custom_column%2F)
before being able to contribute a note or feedback.