WP_Theme_Install_List_Table::display_rows()publicWP 1.0

Method of the class: WP_Theme_Install_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

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