ActionScheduler_wpPostStore::mark_migrated()publicWC 1.0

Mark action as migrated when there is an error deleting the action.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$ActionScheduler_wpPostStore = new ActionScheduler_wpPostStore();
$ActionScheduler_wpPostStore->mark_migrated( $action_id );
$action_id(int) (обязательный)
Action ID.

Код ActionScheduler_wpPostStore::mark_migrated() WC 8.7.0

public function mark_migrated( $action_id ) {
	wp_update_post(
		array(
			'ID'          => $action_id,
			'post_status' => 'migrated',
		)
	);
}