manage_sites_custom_column
Fires for each registered custom column in the Sites list table.
Description
Parameters (2)
- 0. $column_name (string)
- The name of the column to display.
- 1. $blog_blog_id (int)
- The blog blog id.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'manage_sites_custom_column', $column_name, $blog_blog_id );
- The following example is for adding a hook callback.
- // define the manage_sites_custom_column callback
- function action_manage_sites_custom_column( $column_name, $blog_blog_id ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'manage_sites_custom_column', 'action_manage_sites_custom_column', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'manage_sites_custom_column', 'action_manage_sites_custom_column', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-admin/includes/class-wp-ms-sites-list-table.php
- do_action( 'manage_sites_custom_column', $column_name, $blog['blog_id'] );