ActionScheduler_AdminView_Deprecated::list_table_sortable_columns()public staticWC 1.0

Make our custom title & date columns use defaulting title & date sorting.

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

Хуков нет.

Возвращает

Массив. $columns An associative array of columns that can be used to sort the table on the Scheduled Actions administration screen.

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

$result = ActionScheduler_AdminView_Deprecated::list_table_sortable_columns( $columns );
$columns(массив) (обязательный)
An associative array of columns that can be used to sort the table on the Scheduled Actions administration screen.

Код ActionScheduler_AdminView_Deprecated::list_table_sortable_columns() WC 8.7.0

public static function list_table_sortable_columns( $columns ) {
	_deprecated_function( __METHOD__, '2.0.0' );
	return $columns;
}