WP_MS_Sites_List_Table::column_plugins( array $blog )

In this article

Handles the plugins column output.

Parameters

$blogarrayrequired
Current site.

Source

public function column_plugins( $blog ) {
	if ( has_filter( 'wpmublogsaction' ) ) {
		/**
		 * Fires inside the auxiliary 'Actions' column of the Sites list table.
		 *
		 * By default this column is hidden unless something is hooked to the action.
		 *
		 * @since MU (3.0.0)
		 *
		 * @param int $blog_id The site ID.
		 */
		do_action( 'wpmublogsaction', $blog['blog_id'] );
	}
}

Hooks

do_action( ‘wpmublogsaction’, int $blog_id )

Fires inside the auxiliary ‘Actions’ column of the Sites list table.

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

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