WP_List_Util::__construct()publicWP 4.7.0

Constructor.

Sets the input array.

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

Хуков нет.

Возвращает

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

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

$WP_List_Util = new WP_List_Util();
$WP_List_Util->__construct( $input );
$input(массив) (обязательный)
Array to perform operations on.

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

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

Код WP_List_Util::__construct() WP 6.4.3

public function __construct( $input ) {
	$this->output = $input;
	$this->input  = $input;
}