You appear to be a bot. Output may be restricted
Description
Display the values of the current post
The class of the checkbox is "check-column" – enabling it to be selected / de-selected by the checkbox in the header.
Usage
oik_batchmove_display_post( $post );
Parameters
- $post
- ( post ) required – the post object
Returns
void
Source
File name: oik-batchmove/admin/oik-batchmove.php
Lines:
1 to 11 of 11
function oik_batchmove_display_post( $post ) { $checkbox = _oikbm_icheck( "_batchmove_ids[]", $post->ID ); stag( "tr" ); th( $checkbox, "check-column" ); $link = retlink( null, get_permalink( $post->ID ), $post->ID ); td( $link ); td( $post->post_date ); td( $post->post_title ); td( $post->comment_count ); etag( "tr" ); }