Get ACF Options Page Fields
wp_get_acf_optionsRetrieve Advanced Custom Fields (ACF) options page fields for global site content like footers, alerts, and sponsors, in markdown or JSON.
Instructions
Read fields from an ACF (Advanced Custom Fields) Options page on arsnovasingers.org.
Requires the "ACF to REST API" plugin (airesvsg) to be installed and active. Reads from /wp-json/acf/v3/options/{option_page}.
Use this for Stagehand's global site content — footer columns/headers, alert bars, sponsor blocks, etc. — that aren't stored on a specific page.
Args:
option_page (string): Options page slug. Default 'options' (Stagehand's main Options page).
field (string, optional): Specific field name to return. If omitted, returns all fields.
response_format (enum): markdown | json. Default 'markdown'.
Returns: WPACFOptionsResult { acf: { [field_name]: value, ... } }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| field | No | Optional specific field name to return (e.g. 'column_copy_2'). If omitted, returns the entire acf object. | |
| option_page | No | ACF Options page slug. Default 'options' (Stagehand's global Options page). Other examples: 'general-options'. Only [a-zA-Z0-9_-] allowed. | options |
| response_format | No | Output format: 'markdown' for human-readable, 'json' for machine-readable. | markdown |