Код: Выделить всё
// Add the custom menu for the import page
add_action('admin_menu', 'custom_import_menu');
function custom_import_menu() {
add_submenu_page(
'woocommerce',
'Custom Product Import',
'Product Import',
'manage_options',
'custom-product-import',
'custom_product_import_page'
);
}
function custom_product_import_page() {
?>
Custom Product Import
Choose CSV file (.csv):
Подробнее здесь: [url]https://stackoverflow.com/questions/79162135/how-to-display-real-time-progress-bar-for-product-import-in-woocommerce[/url]