WP_Block_List::next()publicWP 5.5.0ReturnTypeWillChange

Moves the current position of the block list to the next element.

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

Хуков нет.

Возвращает

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

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

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

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

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

Код WP_Block_List::next() WP 6.5.2

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