WP_Theme_Install_List_Table::display_rows
Generates the list table rows.
Method of the class: WP_Theme_Install_List_Table{}
No Hooks.
Returns
null. Nothing (null).
Usage
$WP_Theme_Install_List_Table = new WP_Theme_Install_List_Table(); $WP_Theme_Install_List_Table->display_rows();
Changelog
| Since 3.1.0 | Introduced. |
WP_Theme_Install_List_Table::display_rows() WP Theme Install List Table::display rows code WP 7.0.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();
}