WP_Media_List_Table::display_rows()
Method of the class: WP_Media_List_Table{}
No Hooks.
Return
null
. Nothing (null).
Usage
$WP_Media_List_Table = new WP_Media_List_Table(); $WP_Media_List_Table->display_rows();
Notes
- Global. WP_Post. $post Global post object.
- Global. WP_Query. $wp_query WordPress Query object.
WP_Media_List_Table::display_rows() WP Media List Table::display rows code WP 6.6.2
<?php public function display_rows() { global $post, $wp_query; $post_ids = wp_list_pluck( $wp_query->posts, 'ID' ); reset( $wp_query->posts ); $this->comment_pending_count = get_pending_comments_num( $post_ids ); add_filter( 'the_title', 'esc_html' ); while ( have_posts() ) : the_post(); if ( $this->is_trash && 'trash' !== $post->post_status || ! $this->is_trash && 'trash' === $post->post_status ) { continue; } $post_owner = ( get_current_user_id() === (int) $post->post_author ) ? 'self' : 'other'; ?> <tr id="post-<?php echo $post->ID; ?>" class="<?php echo trim( ' author-' . $post_owner . ' status-' . $post->post_status ); ?>"> <?php $this->single_row_columns( $post ); ?> </tr> <?php endwhile; }