acf_options_page::get_page
This function will return an options page settings
Method of the class: acf_options_page{}
No Hooks.
Returns
(Mixed).
Usage
$acf_options_page = new acf_options_page(); $acf_options_page->get_page( $slug );
- $slug(required)
- .
Changelog
| Since 5.4.0 | Introduced. |
acf_options_page::get_page() acf options page::get page code ACF 6.8.8
function get_page( $slug ) {
return isset( $this->pages[ $slug ] ) ? $this->pages[ $slug ] : null;
}