WP_Posts_List_Table::_column_title( WP_Post $post, string $classes, string $data, string $primary )

In this article

Parameters

$postWP_Postrequired
$classesstringrequired
$datastringrequired
$primarystringrequired

Source

protected function _column_title( $post, $classes, $data, $primary ) {
	$aria_label = $this->get_primary_column_aria_label( $post );
	$aria_attr  = ( '' !== $aria_label ) ? ' aria-label="' . esc_attr( $aria_label ) . '"' : '';
	echo '<th scope="row" class="' . $classes . ' page-title" ', $data, $aria_attr, '>';
	echo $this->column_title( $post );
	echo $this->handle_row_actions( $post, 'title', $primary );
	echo '</th>';
}

Changelog

VersionDescription
4.3.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.