acf_options_page::get_pagepublicACF 5.4.0

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() code ACF 6.8.8

function get_page( $slug ) {

	return isset( $this->pages[ $slug ] ) ? $this->pages[ $slug ] : null;
}