我们从插件开发人员那里得到了一个解决方案:
将此代码添加到主题函数中。php文件
// run a function before export starts, it deletes counter value from DB
add_action(\'pmxe_before_export\', \'wp_all_export_pmxe_before_export\', 10, 1);
function wp_all_export_pmxe_before_export($export_id)
{
delete_option(\'wp_all_export_current_row\');
}
<将其添加到“导出PHP函数返回的值”部分下的所有导出插件的编辑导出屏幕
// update counter value while exporting
function get_row_number()
{
$current = get_option(\'wp_all_export_current_row\', 1);
update_option(\'wp_all_export_current_row\', $current + 1);
return $current;
}