acf_options_page::update_page()publicACF 5.6.0

update_page

This function will update an options page settings

Метод класса: acf_options_page{}

Хуков нет.

Возвращает

(Массив).

Использование

$acf_options_page = new acf_options_page();
$acf_options_page->update_page( $slug, $data );
$slug **
-
По умолчанию: ''
$data **
-
По умолчанию: array()

Список изменений

С версии 5.6.0 Введена.

Код acf_options_page::update_page() ACF 6.0.4

function update_page( $slug = '', $data = array() ) {

	// vars
	$page = $this->get_page( $slug );

	// bail early if no page
	if ( ! $page ) {
		return false;
	}

	// loop
	$page = array_merge( $page, $data );

	// set
	$this->pages[ $slug ] = $page;

	// return
	return $page;

}