BP_Members_MS_List_Table::display_rows()
Display signups rows.
Description
Source
File: bp-members/classes/class-bp-members-ms-list-table.php
209 210 211 212 213 214 215 216 217 218 219 220 221 | public function display_rows() { $style = '' ; foreach ( $this ->items as $userid => $signup_object ) { // Avoid a notice error appearing since 4.3.0. if ( isset( $signup_object ->id ) ) { $signup_object ->ID = $signup_object ->id; } $style = ( ' class="alternate"' == $style ) ? '' : ' class="alternate"' ; echo "\n\t" . $this ->single_row( $signup_object , $style ); } } |
Changelog
Version | Description |
---|---|
BuddyPress 2.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.