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;
} /**
* Gets the name of the default primary column.
*
* @since 4.3.0
*
* @return string Name of the default primary column, in this case, 'title'.
*/