> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wp-content.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Generate a theme manifest

> wpc theme:manifest

Extract metadata from a theme file using WordPress internals and output it as a structured manifest.

## Usage

```bash theme={null}
wpc theme:manifest [options] [--] <input>
```

## Arguments

<ParamField body="input" type="string" required>
  Path to the stylesheet file (e.g. `my-theme/style.css`).
</ParamField>

## Options

<ParamField body="--get" type="string">
  If set, outputs only the value of the specified property (e.g. `Name`, `Version`, `Author`, etc.).
</ParamField>

## Examples

```bash theme={null}
# Display full manifest
$ wpc theme:manifest my-plugin/style.css

# Output only the version
$ wpc theme:manifest my-plugin/style.css --get=Version
```
