> ## 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.

# List and inspect themes

> wpc theme:ls, wpc theme:info

Retrieve the list of themes published by your organization, or fetch detailed information about a specific theme.

## List themes

Use `wpc theme:ls` to list themes available on your account.

### Usage

```bash theme={null}
wpc theme:ls [options]
```

### Options

<ParamField body="--paged, -p" type="number">
  Page number to retrieve.
</ParamField>

<ParamField body="--per-page, -c" type="number">
  Number of items per page.
</ParamField>

### Examples

```bash theme={null}
# Get all themes from organization
$ wpc theme:ls

# Provide pagination informations
$ wpc theme:ls --paged=2 --per-page=5
```

## Get theme details

Use `wpc theme:info` to retrieve full information for a theme from the repository.

### Usage

```bash theme={null}
wpc theme:info <slug>
```

### Arguments

<ParamField body="slug" type="string" required>
  Slug of the theme on the repository.
</ParamField>

### Examples

```bash theme={null}
# Get info from theme with slug `dummy`
$ wpc theme:info dummy
```
