Automattic\WooCommerce\Database\Migrations\CustomOrderTable
PostsToOrdersMigrationController::migrate_order()
Migrates an order from the posts table to the custom orders tables.
Метод класса: PostsToOrdersMigrationController{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$PostsToOrdersMigrationController = new PostsToOrdersMigrationController(); $PostsToOrdersMigrationController->migrate_order( $order_post_id ): void;
- $order_post_id(int) (обязательный)
- Post ID of the order to migrate.
Код PostsToOrdersMigrationController::migrate_order() PostsToOrdersMigrationController::migrate order WC 9.5.1
public function migrate_order( int $order_post_id ): void { $this->migrate_orders( array( $order_post_id ) ); }