WP_Customize_Manager::set_autofocus()publicWP 4.4.0

Sets the autofocused constructs.

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

Хуков нет.

Возвращает

null. Ничего (null).

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

$WP_Customize_Manager = new WP_Customize_Manager();
$WP_Customize_Manager->set_autofocus( $autofocus );
$autofocus(массив) (обязательный)

Mapping of 'panel', 'section', 'control' to the ID which should be autofocused.

  • control(строка)
    ID for control to be autofocused.

  • section(строка)
    ID for section to be autofocused.

  • panel(строка)
    ID for panel to be autofocused.

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

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

Код WP_Customize_Manager::set_autofocus() WP 6.5.2

public function set_autofocus( $autofocus ) {
	$this->autofocus = array_filter( wp_array_slice_assoc( $autofocus, array( 'panel', 'section', 'control' ) ), 'is_string' );
}