WP_MS_Sites_List_Table::column_plugins
Handles the plugins column output.
Method of the class: WP_MS_Sites_List_Table{}
Hooks from the method
Returns
null. Nothing (null).
Usage
$WP_MS_Sites_List_Table = new WP_MS_Sites_List_Table(); $WP_MS_Sites_List_Table->column_plugins( $blog );
- $blog(array) (required)
- Current site.
Changelog
| Since 4.3.0 | Introduced. |
WP_MS_Sites_List_Table::column_plugins() WP MS Sites List Table::column plugins code WP 7.0
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'] );
}
}