meta list
Usage
seo-ops meta list <post-id> [--path=<path>] [--format=table|json|csv]
List all SEO meta fields and their values for a specific post. Supports table, JSON, and CSV output.
Examples
# Default table format
seo-ops meta list 123 --path=/var/www/html
# title | My SEO Optimized Page Title
# description | This is the meta description
# focus_keyword | target keyword
# JSON output
seo-ops meta list 123 --path=/var/www/html --format=json
# {"title": "...", "description": "...", ...}
# CSV output
seo-ops meta list 123 --path=/var/www/html --format=csv
# title,description,focus_keyword,...
Exit Codes
| Code | Meaning |
|---|---|
| 0 | Success |
| 1 | Invalid path or WordPress not found |
| 4 | WordPress path not configured |