จัดการปลั๊กอินและธีม รวมถึงการติดตั้ง การเปิดใช้งาน และการอัปเดต
ลิงค์ด่วน: การใช้ | กำลังติดตั้ง | มีส่วนร่วม | สนับสนุน
แพ็คเกจนี้ใช้คำสั่งต่อไปนี้:
จัดการปลั๊กอิน รวมถึงการติดตั้ง การเปิดใช้งาน และการอัปเดต
wp plugin
ดูแหล่งข้อมูลสำหรับนักพัฒนาคู่มือปลั๊กอิน WordPress สำหรับข้อมูลเพิ่มเติมเกี่ยวกับปลั๊กอิน
ตัวอย่าง
# Activate plugin
$ wp plugin activate hello
Plugin 'hello' activated.
Success: Activated 1 of 1 plugins.
# Deactivate plugin
$ wp plugin deactivate hello
Plugin 'hello' deactivated.
Success: Deactivated 1 of 1 plugins.
# Delete plugin
$ wp plugin delete hello
Deleted 'hello' plugin.
Success: Deleted 1 of 1 plugins.
# Install the latest version from wordpress.org and activate
$ wp plugin install bbpress --activate
Installing bbPress (2.5.9)
Downloading install package from https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip...
Using cached file '/home/vagrant/.wp-cli/cache/plugin/bbpress-2.5.9.zip'...
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
Activating 'bbpress'...
Plugin 'bbpress' activated.
Success: Installed 1 of 1 plugins.
เปิดใช้งานปลั๊กอินตั้งแต่หนึ่งรายการขึ้นไป
wp plugin activate [...] [--all] [--exclude=] [--network]
ตัวเลือก
[...]
One or more plugins to activate.
[--all]
If set, all plugins will be activated.
[--exclude=]
Comma separated list of plugin slugs to be excluded from activation.
[--network]
If set, the plugin will be activated for the entire multisite network.
ตัวอย่าง
# Activate plugin
$ wp plugin activate hello
Plugin 'hello' activated.
Success: Activated 1 of 1 plugins.
# Activate plugin in entire multisite network
$ wp plugin activate hello --network
Plugin 'hello' network activated.
Success: Network activated 1 of 1 plugins.
# Activate plugins that were recently active.
$ wp plugin activate $(wp plugin list --recently-active --field=name)
Plugin 'bbpress' activated.
Plugin 'buddypress' activated.
Success: Activated 2 of 2 plugins.
# Activate plugins that were recently active on a multisite.
$ wp plugin activate $(wp plugin list --recently-active --field=name) --network
Plugin 'bbpress' network activated.
Plugin 'buddypress' network activated.
Success: Activated 2 of 2 plugins.
ปิดใช้งานปลั๊กอินตั้งแต่หนึ่งรายการขึ้นไป
wp plugin deactivate [...] [--uninstall] [--all] [--exclude=] [--network]
ตัวเลือก
[...]
One or more plugins to deactivate.
[--uninstall]
Uninstall the plugin after deactivation.
[--all]
If set, all plugins will be deactivated.
[--exclude=]
Comma separated list of plugin slugs that should be excluded from deactivation.
[--network]
If set, the plugin will be deactivated for the entire multisite network.
ตัวอย่าง
# Deactivate plugin
$ wp plugin deactivate hello
Plugin 'hello' deactivated.
Success: Deactivated 1 of 1 plugins.
# Deactivate all plugins with exclusion
$ wp plugin deactivate --all --exclude=hello,wordpress-seo
Plugin 'contact-form-7' deactivated.
Plugin 'ninja-forms' deactivated.
Success: Deactivated 2 of 2 plugins.
ลบไฟล์ปลั๊กอินโดยไม่ต้องปิดการใช้งานหรือถอนการติดตั้ง
wp plugin delete [...] [--all] [--exclude=]
ตัวเลือก
[...]
One or more plugins to delete.
[--all]
If set, all plugins will be deleted.
[--exclude=]
Comma separated list of plugin slugs to be excluded from deletion.
ตัวอย่าง
# Delete plugin
$ wp plugin delete hello
Deleted 'hello' plugin.
Success: Deleted 1 of 1 plugins.
# Delete inactive plugins
$ wp plugin delete $(wp plugin list --status=inactive --field=name)
Deleted 'tinymce-templates' plugin.
Success: Deleted 1 of 1 plugins.
# Delete all plugins excluding specified ones
$ wp plugin delete --all --exclude=hello-dolly,jetpack
Deleted 'akismet' plugin.
Deleted 'tinymce-templates' plugin.
Success: Deleted 2 of 2 plugins.
รับรายละเอียดเกี่ยวกับปลั๊กอินที่ติดตั้ง
wp plugin get [--field=] [--fields=] [--format=]
ตัวเลือก
The plugin to get.
[--field=]
Instead of returning the whole plugin, returns the value of a single field.
[--fields=]
Limit the output to specific fields. Defaults to all fields.
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- yaml
---
ฟิลด์ที่มีอยู่
ฟิลด์เหล่านี้จะแสดงตามค่าเริ่มต้นสำหรับปลั๊กอิน:
ฟิลด์เหล่านี้มีให้เลือกใช้:
ตัวอย่าง
# Get plugin details.
$ wp plugin get bbpress --format=json
{"name":"bbpress","title":"bbPress","author":"The bbPress Contributors","version":"2.6.9","description":"bbPress is forum software with a twist from the creators of WordPress.","status":"active"}
ติดตั้งปลั๊กอินตั้งแต่หนึ่งรายการขึ้นไป
wp plugin install ... [--version=] [--force] [--activate] [--activate-network] [--insecure]
ตัวเลือก
...
One or more plugins to install. Accepts a plugin slug, the path to a local zip file, or a URL to a remote zip file.
[--version=]
If set, get that particular version from wordpress.org, instead of the
stable version.
[--force]
If set, the command will overwrite any installed version of the plugin, without prompting
for confirmation.
[--activate]
If set, the plugin will be activated immediately after install.
[--activate-network]
If set, the plugin will be network activated immediately after install
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
ตัวอย่าง
# Install the latest version from wordpress.org and activate
$ wp plugin install bbpress --activate
Installing bbPress (2.5.9)
Downloading install package from https://downloads.wordpress.org/plugin/bbpress.2.5.9.zip...
Using cached file '/home/vagrant/.wp-cli/cache/plugin/bbpress-2.5.9.zip'...
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
Activating 'bbpress'...
Plugin 'bbpress' activated.
Success: Installed 1 of 1 plugins.
# Install the development version from wordpress.org
$ wp plugin install bbpress --version=dev
Installing bbPress (Development Version)
Downloading install package from https://downloads.wordpress.org/plugin/bbpress.zip...
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
Success: Installed 1 of 1 plugins.
# Install from a local zip file
$ wp plugin install ../my-plugin.zip
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
Success: Installed 1 of 1 plugins.
# Install from a remote zip file
$ wp plugin install http://s3.amazonaws.com/bucketname/my-plugin.zip?AWSAccessKeyId=123&Expires=456&Signature=abcdef
Downloading install package from http://s3.amazonaws.com/bucketname/my-plugin.zip?AWSAccessKeyId=123&Expires=456&Signature=abcdef
Unpacking the package...
Installing the plugin...
Plugin installed successfully.
Success: Installed 1 of 1 plugins.
# Update from a remote zip file
$ wp plugin install https://github.com/envato/wp-envato-market/archive/master.zip --force
Downloading install package from https://github.com/envato/wp-envato-market/archive/master.zip
Unpacking the package...
Installing the plugin...
Renamed Github-based project from 'wp-envato-market-master' to 'wp-envato-market'.
Plugin updated successfully
Success: Installed 1 of 1 plugins.
# Forcefully re-install all installed plugins
$ wp plugin install $(wp plugin list --field=name) --force
Installing Akismet (3.1.11)
Downloading install package from https://downloads.wordpress.org/plugin/akismet.3.1.11.zip...
Unpacking the package...
Installing the plugin...
Removing the old version of the plugin...
Plugin updated successfully
Success: Installed 1 of 1 plugins.
ตรวจสอบว่ามีการติดตั้งปลั๊กอินที่กำหนดหรือไม่
wp plugin is-installed
ส่งคืนรหัสทางออก 0 เมื่อติดตั้ง และ 1 เมื่อถอนการติดตั้ง
ตัวเลือก
The plugin to check.
ตัวอย่าง
# Check whether plugin is installed; exit status 0 if installed, otherwise 1
$ wp plugin is-installed hello
$ echo $?
1
รับรายการปลั๊กอิน
wp plugin list [--=] [--field=] [--fields=] [--format=] [--status=] [--skip-update-check] [--recently-active]
แสดงรายการปลั๊กอินที่ติดตั้งบนไซต์พร้อมสถานะการเปิดใช้งาน ไม่ว่าจะมีการอัพเดตหรือไม่ เป็นต้น
ใช้ --status=dropin
เพื่อแสดงรายการ dropins ที่ติดตั้ง (เช่น object-cache.php
)
ตัวเลือก
[--=]
Filter results based on the value of a field.
[--field=]
Prints the value of a single field for each plugin.
[--fields=]
Limit the output to specific object fields.
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- count
- json
- yaml
---
[--status=]
Filter the output by plugin status.
---
options:
- active
- active-network
- dropin
- inactive
- must-use
---
[--skip-update-check]
If set, the plugin update check will be skipped.
[--recently-active]
If set, only recently active plugins will be shown and the status filter will be ignored.
ฟิลด์ที่มีอยู่
ฟิลด์เหล่านี้จะแสดงตามค่าเริ่มต้นสำหรับแต่ละปลั๊กอิน:
ฟิลด์เหล่านี้มีให้เลือกใช้:
ตัวอย่าง
# List active plugins on the site.
$ wp plugin list --status=active --format=json
[{"name":"dynamic-hostname","status":"active","update":"none","version":"0.4.2","update_version":"","auto_update":"off"},{"name":"tinymce-templates","status":"active","update":"none","version":"4.8.1","update_version":"","auto_update":"off"},{"name":"wp-multibyte-patch","status":"active","update":"none","version":"2.9","update_version":"","auto_update":"off"},{"name":"wp-total-hacks","status":"active","update":"none","version":"4.7.2","update_version":"","auto_update":"off"}]
# List plugins on each site in a network.
$ wp site list --field=url | xargs -I % wp plugin list --url=%
+---------+----------------+-----------+---------+-----------------+------------+
| name | status | update | version | update_version | auto_update |
+---------+----------------+-----------+---------+----------------+-------------+
| akismet | active-network | none | 5.3.1 | | on |
| hello | inactive | available | 1.6 | 1.7.2 | off |
+---------+----------------+-----------+---------+----------------+-------------+
+---------+----------------+-----------+---------+----------------+-------------+
| name | status | update | version | update_version | auto_update |
+---------+----------------+-----------+---------+----------------+-------------+
| akismet | active-network | none | 5.3.1 | | on |
| hello | inactive | available | 1.6 | 1.7.2 | off |
+---------+----------------+-----------+---------+----------------+-------------+
# Check whether plugins are still active on WordPress.org
$ wp plugin list --fields=name,wporg_status,wporg_last_updated
+--------------------+--------------+--------------------+
| name | wporg_status | wporg_last_updated |
+--------------------+--------------+--------------------+
| akismet | active | 2023-12-11 |
| user-switching | active | 2023-11-17 |
| wordpress-importer | active | 2023-04-28 |
| local | | |
+--------------------+--------------+--------------------+
# List recently active plugins on the site.
$ wp plugin list --recently-active --field=name --format=json
["akismet","bbpress","buddypress"]
รับเส้นทางไปยังปลั๊กอินหรือไปยังไดเร็กทอรีปลั๊กอิน
wp plugin path [] [--dir]
ตัวเลือก
[]
The plugin to get the path to. If not set, will return the path to the
plugins directory.
[--dir]
If set, get the path to the closest parent directory, instead of the
plugin file.
ตัวอย่าง
$ cd $(wp plugin path) && pwd
/var/www/wordpress/wp-content/plugins
ค้นหาไดเรกทอรีปลั๊กอิน WordPress.org
wp plugin search [--page=] [--per-page=] [--field=] [--fields=] [--format=]
แสดงปลั๊กอินในไดเร็กทอรีปลั๊กอิน WordPress.org ที่ตรงกับคำค้นหาที่กำหนด
ตัวเลือก
The string to search for.
[--page=]
Optional page to display.
---
default: 1
---
[--per-page=]
Optional number of results to display.
---
default: 10
---
[--field=]
Prints the value of a single field for each plugin.
[--fields=]
Ask for specific fields from the API. Defaults to name,slug,author_profile,rating. Acceptable values:
**name**: Plugin Name
**slug**: Plugin Slug
**version**: Current Version Number
**author**: Plugin Author
**author_profile**: Plugin Author Profile
**contributors**: Plugin Contributors
**requires**: Plugin Minimum Requirements
**tested**: Plugin Tested Up To
**compatibility**: Plugin Compatible With
**rating**: Plugin Rating in Percent and Total Number
**ratings**: Plugin Ratings for each star (1-5)
**num_ratings**: Number of Plugin Ratings
**homepage**: Plugin Author's Homepage
**description**: Plugin's Description
**short_description**: Plugin's Short Description
**sections**: Plugin Readme Sections: description, installation, FAQ, screenshots, other notes, and changelog
**downloaded**: Plugin Download Count
**last_updated**: Plugin's Last Update
**added**: Plugin's Date Added to wordpress.org Repository
**tags**: Plugin's Tags
**versions**: Plugin's Available Versions with D/L Link
**donate_link**: Plugin's Donation Link
**banners**: Plugin's Banner Image Link
**icons**: Plugin's Icon Image Link
**active_installs**: Plugin's Number of Active Installs
**contributors**: Plugin's List of Contributors
**url**: Plugin's URL on wordpress.org
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- count
- json
- yaml
---
ตัวอย่าง
$ wp plugin search dsgnwrks --per-page=20 --format=json
Success: Showing 3 of 3 plugins.
[{"name":"DsgnWrks Instagram Importer Debug","slug":"dsgnwrks-instagram-importer-debug","rating":0},{"name":"DsgnWrks Instagram Importer","slug":"dsgnwrks-instagram-importer","rating":84},{"name":"DsgnWrks Twitter Importer","slug":"dsgnwrks-twitter-importer","rating":80}]
$ wp plugin search dsgnwrks --fields=name,version,slug,rating,num_ratings
Success: Showing 3 of 3 plugins.
+-----------------------------------+---------+-----------------------------------+--------+-------------+
| name | version | slug | rating | num_ratings |
+-----------------------------------+---------+-----------------------------------+--------+-------------+
| DsgnWrks Instagram Importer Debug | 0.1.6 | dsgnwrks-instagram-importer-debug | 0 | 0 |
| DsgnWrks Instagram Importer | 1.3.7 | dsgnwrks-instagram-importer | 84 | 23 |
| DsgnWrks Twitter Importer | 1.1.1 | dsgnwrks-twitter-importer | 80 | 1 |
+-----------------------------------+---------+-----------------------------------+--------+-------------+
แสดงสถานะของปลั๊กอินหนึ่งรายการหรือทั้งหมด
wp plugin status []
ตัวเลือก
[]
A particular plugin to show the status for.
ตัวอย่าง
# Displays status of all plugins
$ wp plugin status
5 installed plugins:
I akismet 3.1.11
I easy-digital-downloads 2.5.16
A theme-check 20160523.1
I wen-logo-slider 2.0.3
M ns-pack 1.0.0
Legend: I = Inactive, A = Active, M = Must Use
# Displays status of a plugin
$ wp plugin status theme-check
Plugin theme-check details:
Name: Theme Check
Status: Active
Version: 20160523.1
Author: Otto42, pross
Description: A simple and easy way to test your theme for all the latest WordPress standards and practices. A great theme development tool!
สลับสถานะการเปิดใช้งานปลั๊กอิน
wp plugin toggle ... [--network]
หากปลั๊กอินทำงานอยู่ ระบบจะปิดใช้งานปลั๊กอินดังกล่าว หากปลั๊กอินไม่ทำงาน ปลั๊กอินนั้นจะถูกเปิดใช้งาน
ตัวเลือก
...
One or more plugins to toggle.
[--network]
If set, the plugin will be toggled for the entire multisite network.
ตัวอย่าง
# Akismet is currently activated
$ wp plugin toggle akismet
Plugin 'akismet' deactivated.
Success: Toggled 1 of 1 plugins.
# Akismet is currently deactivated
$ wp plugin toggle akismet
Plugin 'akismet' activated.
Success: Toggled 1 of 1 plugins.
ถอนการติดตั้งปลั๊กอินอย่างน้อยหนึ่งรายการ
wp plugin uninstall [...] [--deactivate] [--skip-delete] [--all] [--exclude=]
ตัวเลือก
[...]
One or more plugins to uninstall.
[--deactivate]
Deactivate the plugin before uninstalling. Default behavior is to warn and skip if the plugin is active.
[--skip-delete]
If set, the plugin files will not be deleted. Only the uninstall procedure
will be run.
[--all]
If set, all plugins will be uninstalled.
[--exclude=]
Comma separated list of plugin slugs to be excluded from uninstall.
ตัวอย่าง
$ wp plugin uninstall hello
Uninstalled and deleted 'hello' plugin.
Success: Uninstalled 1 of 1 plugins.
# Uninstall all plugins excluding specified ones
$ wp plugin uninstall --all --exclude=hello-dolly,jetpack
Uninstalled and deleted 'akismet' plugin.
Uninstalled and deleted 'tinymce-templates' plugin.
Success: Uninstalled 2 of 2 plugins.
อัปเดตปลั๊กอินตั้งแต่หนึ่งรายการขึ้นไป
wp plugin update [...] [--all] [--exclude=] [--minor] [--patch] [--format=] [--version=] [--dry-run] [--insecure]
ตัวเลือก
[...]
One or more plugins to update.
[--all]
If set, all plugins that have updates will be updated.
[--exclude=]
Comma separated list of plugin names that should be excluded from updating.
[--minor]
Only perform updates for minor releases (e.g. from 1.3 to 1.4 instead of 2.0)
[--patch]
Only perform updates for patch releases (e.g. from 1.3 to 1.3.3 instead of 1.4)
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- summary
---
[--version=]
If set, the plugin will be updated to the specified version.
[--dry-run]
Preview which plugins would be updated.
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
ตัวอย่าง
$ wp plugin update bbpress --version=dev
Installing bbPress (Development Version)
Downloading install package from https://downloads.wordpress.org/plugin/bbpress.zip...
Unpacking the package...
Installing the plugin...
Removing the old version of the plugin...
Plugin updated successfully.
Success: Updated 1 of 2 plugins.
$ wp plugin update --all
Enabling Maintenance mode...
Downloading update from https://downloads.wordpress.org/plugin/akismet.3.1.11.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the plugin...
Plugin updated successfully.
Downloading update from https://downloads.wordpress.org/plugin/nginx-champuru.3.2.0.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the plugin...
Plugin updated successfully.
Disabling Maintenance mode...
+------------------------+-------------+-------------+---------+
| name | old_version | new_version | status |
+------------------------+-------------+-------------+---------+
| akismet | 3.1.3 | 3.1.11 | Updated |
| nginx-cache-controller | 3.1.1 | 3.2.0 | Updated |
+------------------------+-------------+-------------+---------+
Success: Updated 2 of 2 plugins.
$ wp plugin update --all --exclude=akismet
Enabling Maintenance mode...
Downloading update from https://downloads.wordpress.org/plugin/nginx-champuru.3.2.0.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the plugin...
Plugin updated successfully.
Disabling Maintenance mode...
+------------------------+-------------+-------------+---------+
| name | old_version | new_version | status |
+------------------------+-------------+-------------+---------+
| nginx-cache-controller | 3.1.1 | 3.2.0 | Updated |
+------------------------+-------------+-------------+---------+
จัดการธีม รวมถึงการติดตั้ง การเปิดใช้งาน และการอัปเดต
wp theme
ดูแหล่งข้อมูลสำหรับนักพัฒนาคู่มือธีม WordPress สำหรับข้อมูลเพิ่มเติมเกี่ยวกับธีม
ตัวอย่าง
# Install the latest version of a theme from wordpress.org and activate
$ wp theme install twentysixteen --activate
Installing Twenty Sixteen (1.2)
Downloading install package from http://downloads.wordpress.org/theme/twentysixteen.1.2.zip...
Unpacking the package...
Installing the theme...
Theme installed successfully.
Activating 'twentysixteen'...
Success: Switched to 'Twenty Sixteen' theme.
Success: Installed 1 of 1 themes.
# Get details of an installed theme
$ wp theme get twentysixteen --fields=name,title,version
+---------+----------------+
| Field | Value |
+---------+----------------+
| name | Twenty Sixteen |
| title | Twenty Sixteen |
| version | 1.2 |
+---------+----------------+
# Get status of theme
$ wp theme status twentysixteen
Theme twentysixteen details:
Name: Twenty Sixteen
Status: Active
Version: 1.2
Author: the WordPress team
เปิดใช้งานธีม
wp theme activate
ตัวเลือก
The theme to activate.
ตัวอย่าง
$ wp theme activate twentysixteen
Success: Switched to 'Twenty Sixteen' theme.
ลบธีมตั้งแต่หนึ่งธีมขึ้นไป
wp theme delete [...] [--all] [--force]
ลบธีมหรือธีมออกจากระบบไฟล์
ตัวเลือก
[...]
One or more themes to delete.
[--all]
If set, all themes will be deleted except active theme.
[--force]
To delete active theme use this.
ตัวอย่าง
$ wp theme delete twentytwelve
Deleted 'twentytwelve' theme.
Success: Deleted 1 of 1 themes.
ปิดการใช้งานธีมในการติดตั้ง WordPress หลายไซต์
wp theme disable [--network]
ลบความสามารถสำหรับธีมที่จะเปิดใช้งานจากแดชบอร์ดของไซต์ในการติดตั้ง WordPress หลายไซต์
ตัวเลือก
The theme to disable.
[--network]
If set, the theme is disabled on the network level. Note that
individual sites may still have this theme enabled if it was
enabled for them independently.
ตัวอย่าง
# Disable theme
$ wp theme disable twentysixteen
Success: Disabled the 'Twenty Sixteen' theme.
# Disable theme in network level
$ wp theme disable twentysixteen --network
Success: Network disabled the 'Twenty Sixteen' theme.
เปิดใช้งานธีมในการติดตั้ง WordPress หลายไซต์
wp theme enable [--network] [--activate]
อนุญาตให้เปิดใช้งานธีมจากแดชบอร์ดของไซต์ในการติดตั้ง WordPress หลายไซต์
ตัวเลือก
The theme to enable.
[--network]
If set, the theme is enabled for the entire network
[--activate]
If set, the theme is activated for the current site. Note that
the "network" flag has no influence on this.
ตัวอย่าง
# Enable theme
$ wp theme enable twentysixteen
Success: Enabled the 'Twenty Sixteen' theme.
# Network enable theme
$ wp theme enable twentysixteen --network
Success: Network enabled the 'Twenty Sixteen' theme.
# Network enable and activate theme for current site
$ wp theme enable twentysixteen --activate
Success: Enabled the 'Twenty Sixteen' theme.
Success: Switched to 'Twenty Sixteen' theme.
รับรายละเอียดเกี่ยวกับธีม
wp theme get [--field=] [--fields=] [--format=]
ตัวเลือก
The theme to get.
[--field=]
Instead of returning the whole theme, returns the value of a single field.
[--fields=]
Limit the output to specific fields. Defaults to all fields.
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- yaml
---
ตัวอย่าง
$ wp theme get twentysixteen --fields=name,title,version
+---------+----------------+
| Field | Value |
+---------+----------------+
| name | Twenty Sixteen |
| title | Twenty Sixteen |
| version | 1.2 |
+---------+----------------+
ติดตั้งหนึ่งธีมขึ้นไป
wp theme install ... [--version=] [--force] [--activate] [--insecure]
ตัวเลือก
...
One or more themes to install. Accepts a theme slug, the path to a local zip file, or a URL to a remote zip file.
[--version=]
If set, get that particular version from wordpress.org, instead of the
stable version.
[--force]
If set, the command will overwrite any installed version of the theme, without prompting
for confirmation.
[--activate]
If set, the theme will be activated immediately after install.
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
ตัวอย่าง
# Install the latest version from wordpress.org and activate
$ wp theme install twentysixteen --activate
Installing Twenty Sixteen (1.2)
Downloading install package from http://downloads.wordpress.org/theme/twentysixteen.1.2.zip...
Unpacking the package...
Installing the theme...
Theme installed successfully.
Activating 'twentysixteen'...
Success: Switched to 'Twenty Sixteen' theme.
Success: Installed 1 of 1 themes.
# Install from a local zip file
$ wp theme install ../my-theme.zip
# Install from a remote zip file
$ wp theme install http://s3.amazonaws.com/bucketname/my-theme.zip?AWSAccessKeyId=123&Expires=456&Signature=abcdef
ตรวจสอบว่ามีการติดตั้งธีมที่กำหนดหรือไม่
wp theme is-installed
ส่งคืนรหัสทางออก 0 เมื่อติดตั้ง และ 1 เมื่อถอนการติดตั้ง
ตัวเลือก
The theme to check.
ตัวอย่าง
# Check whether theme is installed; exit status 0 if installed, otherwise 1
$ wp theme is-installed hello
$ echo $?
1
รับรายการธีม
wp theme list [--=] [--field=] [--fields=] [--format=] [--status=] [--skip-update-check]
ตัวเลือก
[--=]
Filter results based on the value of a field.
[--field=]
Prints the value of a single field for each theme.
[--fields=]
Limit the output to specific object fields.
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- count
- yaml
---
[--status=]
Filter the output by theme status.
---
options:
- active
- parent
- inactive
---
[--skip-update-check]
If set, the theme update check will be skipped.
ฟิลด์ที่มีอยู่
ฟิลด์เหล่านี้จะแสดงตามค่าเริ่มต้นสำหรับแต่ละธีม:
ฟิลด์เหล่านี้มีให้เลือกใช้:
ตัวอย่าง
# List inactive themes.
$ wp theme list --status=inactive --format=csv
name,status,update,version,update_version,auto_update
twentyfourteen,inactive,none,3.8,,off
twentysixteen,inactive,available,3.0,3.1,off
ตั้งค่า รับ และลบม็อดธีม
wp theme mod
ตัวอย่าง
# Set the 'background_color' theme mod to '000000'.
$ wp theme mod set background_color 000000
Success: Theme mod background_color set to 000000.
# Get single theme mod in JSON format.
$ wp theme mod get background_color --format=json
[{"key":"background_color","value":"dd3333"}]
# Remove all theme mods.
$ wp theme mod remove --all
Success: Theme mods removed.
รับการดัดแปลงธีมตั้งแต่หนึ่งรายการขึ้นไป
wp theme mod get [...] [--field=] [--all] [--format=]
ตัวเลือก
[...]
One or more mods to get.
[--field=]
Returns the value of a single field.
[--all]
List all theme mods
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- json
- csv
- yaml
---
ตัวอย่าง
# Get all theme mods.
$ wp theme mod get --all
+------------------+---------+
| key | value |
+------------------+---------+
| background_color | dd3333 |
| link_color | #dd9933 |
| main_text_color | #8224e3 |
+------------------+---------+
# Get single theme mod in JSON format.
$ wp theme mod get background_color --format=json
[{"key":"background_color","value":"dd3333"}]
# Get value of a single theme mod.
$ wp theme mod get background_color --field=value
dd3333
# Get multiple theme mods.
$ wp theme mod get background_color header_textcolor
+------------------+--------+
| key | value |
+------------------+--------+
| background_color | dd3333 |
| header_textcolor | |
+------------------+--------+
ตั้งค่าของ mod ธีม
wp theme mod set
ตัวเลือก
The name of the theme mod to set or update.
The new value.
ตัวอย่าง
# Set theme mod
$ wp theme mod set background_color 000000
Success: Theme mod background_color set to 000000.
ลบตัวดัดแปลงธีมตั้งแต่หนึ่งตัวขึ้นไป
wp theme mod remove [...] [--all]
ตัวเลือก
[...]
One or more mods to remove.
[--all]
Remove all theme mods.
ตัวอย่าง
# Remove all theme mods.
$ wp theme mod remove --all
Success: Theme mods removed.
# Remove single theme mod.
$ wp theme mod remove background_color
Success: 1 mod removed.
# Remove multiple theme mods.
$ wp theme mod remove background_color header_textcolor
Success: 2 mods removed.
รับค่าพาธไปยังธีมหรือไดเร็กทอรีธีม
wp theme path [] [--dir]
ตัวเลือก
[]
The theme to get the path to. Path includes "style.css" file.
If not set, will return the path to the themes directory.
[--dir]
If set, get the path to the closest parent directory, instead of the
theme's "style.css" file.
ตัวอย่าง
# Get theme path
$ wp theme path
/var/www/example.com/public_html/wp-content/themes
# Change directory to theme path
$ cd $(wp theme path)
ค้นหาไดเร็กทอรีธีม WordPress.org
wp theme search [--page=] [--per-page=] [--field=] [--fields=] [--format=]
แสดงธีมในไดเร็กทอรีธีม WordPress.org ที่ตรงกับคำค้นหาที่กำหนด
ตัวเลือก
The string to search for.
[--page=]
Optional page to display.
---
default: 1
---
[--per-page=]
Optional number of results to display. Defaults to 10.
[--field=]
Prints the value of a single field for each theme.
[--fields=]
Ask for specific fields from the API. Defaults to name,slug,author,rating. Acceptable values:
**name**: Theme Name
**slug**: Theme Slug
**version**: Current Version Number
**author**: Theme Author
**preview_url**: Theme Preview URL
**screenshot_url**: Theme Screenshot URL
**rating**: Theme Rating
**num_ratings**: Number of Theme Ratings
**homepage**: Theme Author's Homepage
**description**: Theme Description
**url**: Theme's URL on wordpress.org
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- count
- yaml
---
ตัวอย่าง
$ wp theme search photo --per-page=6
Success: Showing 6 of 203 themes.
+----------------------+----------------------+--------+
| name | slug | rating |
+----------------------+----------------------+--------+
| Photos | photos | 100 |
| Infinite Photography | infinite-photography | 100 |
| PhotoBook | photobook | 100 |
| BG Photo Frame | bg-photo-frame | 0 |
| fPhotography | fphotography | 0 |
| Photo Perfect | photo-perfect | 98 |
+----------------------+----------------------+--------+
แสดงสถานะของธีมหนึ่งหรือทั้งหมด
wp theme status []
ตัวเลือก
[]
A particular theme to show the status for.
ตัวอย่าง
$ wp theme status twentysixteen
Theme twentysixteen details:
Name: Twenty Sixteen
Status: Inactive
Version: 1.2
Author: the WordPress team
อัปเดตธีมตั้งแต่หนึ่งธีมขึ้นไป
wp theme update [...] [--all] [--exclude=] [--minor] [--patch] [--format=] [--version=] [--dry-run] [--insecure]
ตัวเลือก
[...]
One or more themes to update.
[--all]
If set, all themes that have updates will be updated.
[--exclude=]
Comma separated list of theme names that should be excluded from updating.
[--minor]
Only perform updates for minor releases (e.g. from 1.3 to 1.4 instead of 2.0)
[--patch]
Only perform updates for patch releases (e.g. from 1.3 to 1.3.3 instead of 1.4)
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- csv
- json
- summary
---
[--version=]
If set, the theme will be updated to the specified version.
[--dry-run]
Preview which themes would be updated.
[--insecure]
Retry downloads without certificate validation if TLS handshake fails. Note: This makes the request vulnerable to a MITM attack.
ตัวอย่าง
# Update multiple themes
$ wp theme update twentyfifteen twentysixteen
Downloading update from https://downloads.wordpress.org/theme/twentyfifteen.1.5.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the theme...
Theme updated successfully.
Downloading update from https://downloads.wordpress.org/theme/twentysixteen.1.2.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the theme...
Theme updated successfully.
+---------------+-------------+-------------+---------+
| name | old_version | new_version | status |
+---------------+-------------+-------------+---------+
| twentyfifteen | 1.4 | 1.5 | Updated |
| twentysixteen | 1.1 | 1.2 | Updated |
+---------------+-------------+-------------+---------+
Success: Updated 2 of 2 themes.
# Exclude themes updates when bulk updating the themes
$ wp theme update --all --exclude=twentyfifteen
Downloading update from https://downloads.wordpress.org/theme/astra.1.0.5.1.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the theme...
Theme updated successfully.
Downloading update from https://downloads.wordpress.org/theme/twentyseventeen.1.2.zip...
Unpacking the update...
Installing the latest version...
Removing the old version of the theme...
Theme updated successfully.
+-----------------+----------+---------+----------------+
| name | status | version | update_version |
+-----------------+----------+---------+----------------+
| astra | inactive | 1.0.1 | 1.0.5.1 |
| twentyseventeen | inactive | 1.1 | 1.2 |
+-----------------+----------+---------+----------------+
Success: Updated 2 of 2 themes.
# Update all themes
$ wp theme update --all
รับรายการม็อดธีม
wp theme mod list [--field=] [--format=]
ตัวเลือก
[--field=]
Returns the value of a single field.
[--format=]
Render output in a particular format.
---
default: table
options:
- table
- json
- csv
- yaml
---
ตัวอย่าง
# Gets a list of theme mods.
$ wp theme mod list
+------------------+---------+
| key | value |
+------------------+---------+
| background_color | dd3333 |
| link_color | #dd9933 |
| main_text_color | #8224e3 |
+------------------+---------+
แพ็คเกจนี้มาพร้อมกับ WP-CLI เอง โดยไม่จำเป็นต้องติดตั้งเพิ่มเติม
หากต้องการติดตั้งเวอร์ชันล่าสุดของแพ็คเกจนี้เหนือสิ่งที่รวมอยู่ใน WP-CLI ให้รัน:
wp package install [email protected]:wp-cli/extension-command.git
เราขอขอบคุณที่คุณริเริ่มเพื่อสนับสนุนโครงการนี้
การมีส่วนร่วมไม่ได้จำกัดอยู่เพียงแค่โค้ดเท่านั้น เราขอแนะนำให้คุณมีส่วนร่วมในวิธีที่เหมาะสมกับความสามารถของคุณมากที่สุด โดยการเขียนบทช่วยสอน สาธิตที่งานมีตติ้งในพื้นที่ของคุณ ช่วยเหลือผู้ใช้รายอื่นในการตอบคำถามสนับสนุน หรือแก้ไขเอกสารประกอบของเรา
หากต้องการคำแนะนำที่ละเอียดยิ่งขึ้น โปรดดูคำแนะนำในการมีส่วนร่วมของ WP-CLI แพ็คเกจนี้เป็นไปตามนโยบายและแนวปฏิบัติเหล่านั้น
คิดว่าคุณได้พบข้อบกพร่องหรือไม่? เราอยากให้คุณช่วยเราแก้ไขปัญหานี้
ก่อนที่คุณจะสร้างปัญหาใหม่ คุณควรค้นหาปัญหาที่มีอยู่เพื่อดูว่ามีวิธีแก้ไขที่มีอยู่หรือไม่ หรือได้รับการแก้ไขแล้วในเวอร์ชันที่ใหม่กว่าหรือไม่
เมื่อคุณค้นหาเสร็จแล้วและพบว่าไม่มีปัญหาที่เปิดอยู่หรือแก้ไขปัญหาแล้วสำหรับข้อบกพร่องของคุณ โปรดสร้างปัญหาใหม่ ใส่รายละเอียดให้มากที่สุด และล้างขั้นตอนในการทำซ้ำหากเป็นไปได้ หากต้องการคำแนะนำเพิ่มเติม โปรดดูเอกสารประกอบรายงานข้อบกพร่องของเรา
ต้องการมีส่วนร่วมในคุณลักษณะใหม่หรือไม่? โปรดเปิดประเด็นใหม่ก่อนเพื่อหารือว่าฟีเจอร์นี้เหมาะสมกับโปรเจ็กต์หรือไม่
เมื่อคุณตัดสินใจที่จะสละเวลาเพื่อดูคำขอดึงข้อมูลของคุณ โปรดปฏิบัติตามหลักเกณฑ์ของเราในการสร้างคำขอดึงข้อมูลเพื่อให้แน่ใจว่าเป็นประสบการณ์ที่น่าพึงพอใจ ดู "การตั้งค่า" สำหรับรายละเอียดเฉพาะเกี่ยวกับการทำงานกับแพ็คเกจนี้ในเครื่อง
ปัญหา GitHub ไม่ได้มีไว้สำหรับคำถามเกี่ยวกับการสนับสนุนทั่วไป แต่มีสถานที่อื่นๆ ที่คุณสามารถลองใช้ได้: https://wp-cli.org/#support
README.md นี้ถูกสร้างขึ้นแบบไดนามิกจาก codebase ของโครงการโดยใช้ wp scaffold package-readme
(doc) หากต้องการแนะนำการเปลี่ยนแปลง โปรดส่งคำขอดึงกับส่วนที่เกี่ยวข้องของโค้ดเบส