WP_Plugins_List_Table::display_rows()publicWP 1.0

Method of the class: WP_Plugins_List_Table{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_Plugins_List_Table = new WP_Plugins_List_Table();
$WP_Plugins_List_Table->display_rows();

Notes

  • Global. String. $status

WP_Plugins_List_Table::display_rows() code WP 6.5.2

public function display_rows() {
	global $status;

	if ( is_multisite() && ! $this->screen->in_admin( 'network' ) && in_array( $status, array( 'mustuse', 'dropins' ), true ) ) {
		return;
	}

	foreach ( $this->items as $plugin_file => $plugin_data ) {
		$this->single_row( array( $plugin_file, $plugin_data ) );
	}
}