WP_MS_Themes_List_Table::column_default( WP_Theme $theme, string $column_name )

Handles default column output.


Parameters

$theme

(WP_Theme) (Required) The current WP_Theme object.

$column_name

(string) (Required) The current column name.


Source

File: wp-admin/includes/class-wp-ms-themes-list-table.php

	public function column_default( $theme, $column_name ) {
		$stylesheet = $theme->get_stylesheet();

		/**
		 * Fires inside each custom column of the Multisite themes list table.
		 *
		 * @since WP-3.1.0
		 *
		 * @param string   $column_name Name of the column.
		 * @param string   $stylesheet  Directory name of the theme.
		 * @param WP_Theme $theme       Current WP_Theme object.
		 */
		do_action( 'manage_themes_custom_column', $column_name, $stylesheet, $theme );
	}


Changelog

Changelog
Version Description
WP-4.3.0 Introduced.