WP_Posts_List_Table::_column_title() –
You appear to be a bot. Output may be restricted
Description
Usage
WP_Posts_List_Table::_column_title( $post, $classes, $data, $primary );
Parameters
- $post
- ( WP_Post ) required –
- $classes
- ( string ) required –
- $data
- ( string ) required –
- $primary
- ( string ) required –
Returns
void
Source
File name: wordpress/wp-admin/includes/class-wp-posts-list-table.php
Lines:
1 to 6 of 6
protected function _column_title( $post, $classes, $data, $primary ) { echo '<td class="' . $classes . ' page-title" ', $data, '>'; echo $this->WP_Posts_List_Table::column_title( $post ); echo $this->WP_Posts_List_Table::handle_row_actions( $post, 'title', $primary ); echo '</td>'; }