WP_MS_Sites_List_Table::column_plugins()publicWP 4.3.0

Handles the plugins column output.

Метод класса: WP_MS_Sites_List_Table{}

Хуки из метода

Возвращает

null. Ничего (null).

Использование

$WP_MS_Sites_List_Table = new WP_MS_Sites_List_Table();
$WP_MS_Sites_List_Table->column_plugins( $blog );
$blog(массив) (обязательный)
Current site.

Список изменений

С версии 4.3.0 Введена.

Код WP_MS_Sites_List_Table::column_plugins() WP 6.5.2

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'] );
	}
}