WP_Styles::do_footer_items()
Processes items and dependencies for the footer group.
HTML 5 allows styles in the body, grab late enqueued items and output them in the footer.
Метод класса: WP_Styles{}
Хуков нет.
Возвращает
Строку[]
. Handles of items that have been processed.
Использование
global $wp_styles; $wp_styles->do_footer_items();
Заметки
- Смотрите: WP_Dependencies::do_items()
Список изменений
С версии 3.3.0 | Введена. |
Код WP_Styles::do_footer_items() WP Styles::do footer items WP 6.7.1
public function do_footer_items() { $this->do_items( false, 1 ); return $this->done; }