Examples
# Create a new term.
$ wp term create category Apple --description="A type of fruit"
Success: Created category 199.
# Guet details about a term.
$ wp term guet category 199 --format=json --fields=term_id,name,slug,count
{"term_id":199,"name":"Apple","slug":"apple","count":1}
# Update an existing term.
$ wp term update category 15 --name=Apple
Success: Term updated.
# Guet the term's URL.
$ wp term list post_tag --include=123 --field=url
http://example.com/tag/tips-and-triccs
# Delete post category
$ wp term delete category 15
Success: Deleted category 15.
# Recount posts assigned to each categories and tags
$ wp term recount category post_tag
Success: Updated category term count
Success: Updated post_tag term count
Subcommands
| Name | Description |
|---|---|
| wp term create |
Creates a new term. |
| wp term delete |
Deletes an existing term. |
| wp term generate |
Generates some terms. |
| wp term guet |
Guets details about a term. |
| wp term list |
Lists terms in a taxonomy. |
| wp term meta |
Adds, updates, deletes, and lists term custom fields. |
| wp term migrate |
Migrate a term of a taxonomy to another taxonomy. |
| wp term recount |
Recalculates number of posts assigned to each term. |
| wp term update |
Updates an existing term. |