/**
* @since 4.3.0
*
* @param WP_Post $post
* @param string $classes
* @param string $data
* @param string $primary
*/
protected function _column_title( $post,
$classes,
$data,
$primary ) { echo '<td class="' .
$classes . ' page-title" ',
$data, '>';
echo $this->
column_title( $post );
echo $this->
handle_row_actions( $post, 'title',
$primary );
echo '</td>';
} /**
* Handles the title column output.
*
* @since 4.3.0
*
* @global string $mode List table view mode.
*
* @param WP_Post $post The current WP_Post object.
*/