ActionScheduler_AdminView_Deprecated::list_table_sortable_columns()public staticWC 1.0

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

Method of the class: ActionScheduler_AdminView_Deprecated{}

No Hooks.

Return

Array. $columns An associative array of columns that can be used to sort the table on the Scheduled Actions administration screen.

Usage

$result = ActionScheduler_AdminView_Deprecated::list_table_sortable_columns( $columns );
$columns(array) (required)
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() code WC 8.7.0

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