WP_MS_Sites_List_Table::column_default( array $item, string $column_name )

In this article

Handles output for the default column.

Parameters

$itemarrayrequired
Current site.
$column_namestringrequired
Current column name.

Source

public function column_default( $item, $column_name ) {
	// Restores the more descriptive, specific name for use within this method.
	$blog = $item;

	/**
	 * Fires for each registered custom column in the Sites list table.
	 *
	 * @since 3.1.0
	 *
	 * @param string $column_name The name of the column to display.
	 * @param int    $blog_id     The site ID.
	 */
	do_action( 'manage_sites_custom_column', $column_name, $blog['blog_id'] );
}

Hooks

do_action( ‘manage_sites_custom_column’, string $column_name, int $blog_id )

Fires for each registered custom column in the Sites list table.

Changelog

VersionDescription
5.9.0Renamed $blog to $item to match parent class for PHP 8 named parameter support.
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.