WP_MS_Themes_List_Table::column_default

Advertisement

Summery Summery

Handles default column output.

Syntax Syntax

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

Parameters Parameters

$theme

(Required) The current WP_Theme object.

$column_name

(Required) The current column name.

Source Source

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

		 *
		 * @param string[] $actions An array of action links.
		 * @param WP_Theme $theme   The current WP_Theme object.
		 * @param string   $context Status of the theme, one of 'all', 'enabled', or 'disabled'.
		 */
		$actions = apply_filters( 'theme_action_links', array_filter( $actions ), $theme, $context );

		/**
		 * Filters the action links of a specific theme in the Multisite themes
		 * list table.
		 *
		 * The dynamic portion of the hook name, `$stylesheet`, refers to the
		 * directory name of the theme, which in most cases is synonymous
		 * with the template name.

Advertisement

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.

Advertisement

Leave a Reply