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