You appear to be a bot. Output may be restricted
Description
Display the post_title column
The output includes the actions that may be performed Row actions <div class="row-actions"> <span class="edit"> <a href="http://qw/wordpress/wp-admin/post.php?post=28389&action=edit" title="Edit this item">Edit</a> | </span> <span class="inline hide-if-no-js">
Quick Edit |
---|
Usage
OIK_Clone_List_Table::column_post_title( $item );
Parameters
- $item
- ( mixed ) required –
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-list-table.php
Lines:
1 to 18 of 18
function column_post_title( $item ) { $item = (array) $item; $title = $this->column_default( $item, "post_title" ); $actions = array(); $args = array( "source" => $item['source'] ); //$actions['view'] = $this->create_action_link( $item, "view", "View", $args ); //$actions['edit'] = $this->create_action_link( $item, "edit", "Edit", $args ); if ( isset( $item['target'] ) ) { $args['target'] = $item['target']; $actions['update'] = $this->create_action_link( $item, "update", __( "Update", 'oik-clone' ), $args ); $actions['compare'] = $this->create_action_link( $item, "compare", __( "Compare", 'oik-clone' ), $args ); } else { $actions['import'] = $this->create_action_link( $item, "import", __( "Import new", 'oik-clone' ), $args ); } $title .= $this->row_actions( $actions ); return( $title ); }