wordpress_get_option
Retrieve specific configuration values from WordPress wp_options table to access site settings, customize functionality, and manage site parameters programmatically.
Instructions
Get WordPress option value from wp_options table
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}