On this page
WP_Posts_List_Table::_column_title( WP_Post $post, string $classes, string $data, string $primary )
Parameters
$postWP_Post Required$classesstring Required$datastring Required$primarystring Required
Source
File: wp-admin/includes/class-wp-posts-list-table.php. View all references
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>';
}
Related
Uses
| Uses | Description |
|---|---|
| WP_Posts_List_Table::handle_row_actions() wp-admin/includes/class-wp-posts-list-table.php | Generates and displays row action links. |
| WP_Posts_List_Table::column_title() wp-admin/includes/class-wp-posts-list-table.php | Handles the title column output. |
Changelog
| Version | Description |
|---|---|
| 4.3.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_posts_list_table/_column_title