WP_Block_List::rewind()publicWP 5.5.0ReturnTypeWillChange

Rewinds back to the first element of the Iterator.

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

Хуков нет.

Возвращает

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

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

$WP_Block_List = new WP_Block_List();
$WP_Block_List->rewind();

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

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

Код WP_Block_List::rewind() WP 6.5.2

public function rewind() {
	reset( $this->blocks );
}