ActionScheduler_AdminView_Deprecated::bulk_actions()publicWC 1.0

Do not include the "Edit" action for the Scheduled Actions administration screen.

Hooked to the 'bulk_actions-edit-action-scheduler' filter.

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

Хуков нет.

Возвращает

Массив. $actions An associative array of actions which can be performed on the 'scheduled-action' post type.

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

$ActionScheduler_AdminView_Deprecated = new ActionScheduler_AdminView_Deprecated();
$ActionScheduler_AdminView_Deprecated->bulk_actions( $actions );
$actions(массив) (обязательный)
An associative array of actions which can be performed on the 'scheduled-action' post type.

Код ActionScheduler_AdminView_Deprecated::bulk_actions() WC 8.7.0

public function bulk_actions( $actions ) {
	_deprecated_function( __METHOD__, '2.0.0' );
	return $actions;
}