WP_HTML_Open_Elements::count()
Returns how many nodes are currently in the stack of open elements.
Метод класса: WP_HTML_Open_Elements{}
Хуков нет.
Возвращает
int
. How many node are in the stack of open elements.
Использование
$WP_HTML_Open_Elements = new WP_HTML_Open_Elements(); $WP_HTML_Open_Elements->count();
Список изменений
С версии 6.4.0 | Введена. |
Код WP_HTML_Open_Elements::count() WP HTML Open Elements::count WP 6.6.1
public function count() { return count( $this->stack ); }