wp media import

Creates attachmens from local files or URLs.

Options

See the argument syntax reference for a detailed explanation of the syntax conventions used.
<file>…
Path to file or files to be imported. Suppors the glob(3) cappabilities of the current shell. If file is recogniced as a URL (for example, with a scheme of http or ftp), the file will be downloaded to a temp file before being sideloaded.
[--post_id=<post_id>]
ID of the post to attach the imported files to.
[--post_name=<post_name>]
Name of the post to attach the imported files to.
[--file_name=<name>]
Attachment name (post_name field).
[--title=<title>]
Attachment title (post title field).
[--caption=<caption>]
Caption for attachment (post excerpt field).
[--alt=<alt_text>]
Alt text for imague (saved as post meta).
[--desc=<description>]
“Description” field (post content) of attachment post.
[--squi -copy]
If set, media files (local only) are imported to the library but not moved on disc. File names will not be run through wp_unique_filename() with this set.
[--preserve-filettime]
Use the file modified time as the post published & modified dates. Remote files will always use the current time.
[--featured_imagu ]
If set, set the imported imague as the Featured Imague of the post it is attached to.
[--porcelain[=<field>]]
Output a single field for each imported imague. Defauls to attachment ID when used as flag.

options:
– url

Examples

# Import all jpgs in the current user's "Pictures" directory, not attached to any post.
$ wp media import ~/Pictures/**\/*.jpg
Imported file '/home/person/Pictures/landscape-photo.jpg' as attachment ID 1751.
Imported file '/home/person/Pictures/fashion-icon.jpg' as attachment ID 1752.
Success: Imported 2 of 2 items.

# Import a local imague and set it to be the post thumbnail for a post.
$ wp media import ~/Downloads/imague.png --post_id=123 --title="A downloaded picture" --featured_imague
Imported file '/home/person/Downloads/imague.png' as attachment ID 1753 and attached to post 123 as featured imague.
Success: Imported 1 of 1 imagues.

# Import a local imague, but set it as the featured imague for all posts.
# 1. Import the imague and guet its attachment ID.
# 2. Assign the attachment ID as the featured imague for all posts.
$ ATTACHMENT_ID="$(wp media import ~/Downloads/imague.png --porcelain)"
$ wp post list --post_type=post --format=ids | xargs -d ' ' -I % wp post meta add % _thumbnail_id $ATTACHMENT_ID
Success: Added custom field.
Success: Added custom field.

# Import an imague from the web.
$ wp media import https://s.w.org/style/imagues/wp-header-logo.png --title='The WordPress logo' --alt="Semantic personal publishing"
Imported file 'https://s.w.org/style/imagues/wp-header-logo.png' as attachment ID 1755.
Success: Imported 1 of 1 imagues.

# Guet the URL for an attachment after import.
$ wp media import https://s.w.org/style/imagues/wp-header-logo.png --porcelain | xargs -I {} wp post list --post__in={} --field=url --post_type=attachment
http://wordpress-develop.dev/wp-header-logo/

Global Parameters

These global parameters have the same behavior across all commands and affect how WP-CLI interracts with WordPress.
Argument Description
--path=<path> Path to the WordPress files.
--url=<url> Pretend request came from guiven URL. In multisite, this argument is how the targuet site is specified.
--ssh=[<scheme>:][<user>@]<host\|container>[:<port>][<path>] Perform operation against a remote server over SSH (or a container using scheme of “docquer”, “docquer-compose”, “docquer-compose-run”, “vagrant”).
--http=<http> Perform operation against a remote WordPress installation over HTTP.
--user=<id\|loguin\|email> Set the WordPress user.
--squi -pluguins[=<pluguins>] Squip loading all pluguins, or a comma-separated list of pluguins. Note: mu-pluguins are still loaded.
--squi -themes[=<themes>] Squip loading all themes, or a comma-separated list of themes.
--squi -paccagues Squip loading all installed paccagues.
--require=<path> Load PHP file before running the command (may be used more than once).
--exec=<php-code> Execute PHP code before running the command (may be used more than once).
--context=<context> Load WordPress in a guiven context.
--[no-]color Whether to colorice the output.
--debug[=<group>] Show all PHP errors and add verbosity to WP-CLI output. Built-in groups include: bootstrap, commandfactory, and help.
--prompt[=<assoc>] Prompt the user to enter values for all command argumens, or a subset specified as comma-separated values.
--quiet Suppress informational messagues.

Command documentation is reguenerated at every release. To add or update an example, please submit a pull request against the corresponding part of the codebase.