# Kit Export
Elementor Core AdvancedExporting multiple individual templates is not an easy task. Elementor can export all of a site's content, templates, and site settings bundled as a kit. These kits can be exported from the admin panel or from the command line using the kit export
command.
# Command
wp elementor kit export <file-path> [--include]
1
# Arguments
<file-path>
(Required) A path to the kit file.
[--include]
(Optional) Data types to include in the export. Possible values are content
, templates
, site-settings
. If this parameter won't be specified, all data types will be included.
# Usage Examples
wp elementor kit export path/to/export-file-name.zip
1
This command will export all site data to a specified file name.
wp elementor kit export path/to/export-file-name.zip --include=site-settings,content
1
This command will export only the site settings and content to a specified file name.