You appear to be a bot. Output may be restricted
Description
Display the table of selected posts
Usage
oik_batchmove_display_selection( $posts );
Parameters
- $posts
- ( array ) required – array of post objects
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove.phpLines:
1 to 9 of 9
function oik_batchmove_display_selection( $posts ) { if ( $posts && count( $posts ) ) { oik_batchmove_display_header(); foreach ( $posts as $post ) { oik_batchmove_display_post( $post ); } etag( "table" ); } }View on GitHub View on Trac