WP_Theme_Install_List_Table::display_rows()
Generates the list table rows.
Метод класса: WP_Theme_Install_List_Table{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WP_Theme_Install_List_Table = new WP_Theme_Install_List_Table(); $WP_Theme_Install_List_Table->display_rows();
Список изменений
С версии 3.1.0 | Введена. |
Код WP_Theme_Install_List_Table::display_rows() WP Theme Install List Table::display rows WP 6.7.1
<?php public function display_rows() { $themes = $this->items; foreach ( $themes as $theme ) { ?> <div class="available-theme installable-theme"> <?php $this->single_row( $theme ); ?> </div> <?php } // End foreach $theme_names. $this->theme_installer(); }