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


Description Description


Parameters Parameters

$post

(WP_Post) (Required)

$classes

(string) (Required)

$data

(string) (Required)

$primary

(string) (Required)


Top ↑

Source Source

File: wp-admin/includes/class-wp-posts-list-table.php

	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>';
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.3.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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