wp_get_options
Retrieve WordPress settings and configuration values from your local development site for debugging, analysis, or integration workflows.
Instructions
Get WordPress options (settings)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of options to retrieve (default: 20) | |
option_name | No | Specific option name to retrieve | |
search | No | Search in option names |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"description": "Number of options to retrieve (default: 20)",
"type": "number"
},
"option_name": {
"description": "Specific option name to retrieve",
"type": "string"
},
"search": {
"description": "Search in option names",
"type": "string"
}
},
"type": "object"
}