'theme-styles-current.json', 'bricks_color_palette' => 'color-palette-current.json', 'bricks_global_settings' => 'global-settings-current.json', ]; $report = []; foreach ($options as $opt_key => $file_name) { $value = get_option($opt_key, null); $path = $out_dir . $file_name; $json = wp_json_encode($value, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); file_put_contents($path, $json); $report[] = $opt_key . ' → ' . $path . ' (' . strlen($json) . ' bytes)'; } wp_die('
' . esc_html(implode("\n", $report)) . '', 'Dump done');
});