WP_Theme_Install_List_Table::display_rows()publicWP 1.0

Метод класса: 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();

Код WP_Theme_Install_List_Table::display_rows() WP 6.5.2

<?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();
}