You appear to be a bot. Output may be restricted
Description
Display the post category selection form
Usage
oik_batchmove_selection();
Parameters
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove.phpLines:
1 to 24 of 24
function oik_batchmove_selection() { // p( "Choose the posts to alter" ); bw_form(); stag( "table", "widefat" ); bw_tablerow( array( "Category", oik_batchmove_category_select( "_batchmove_category_select" ) ) ); //bw_textfield( "_batchmove_rows", 15, "Rows per page", null ); oik_batchmove_order_by(); oik_batchmove_order(); //bw_textfield( "_batchmove_keywords", 30, "Keywords", null ); //bw_textfield( "_batchmove_tags", 30, "Tags", null ); oik_require( "includes/bw_metadata.php" ); //$from_date = bw_get_option( "yearFrom" ); bw_form_field_date( "_batchmove_from_date", "date", "From date", null, null ); bw_form_field_date( "_batchmove_to_date", "date", "To date", null, null ); // bw_textfield( "_batchmove_to_date", 10, "Date to", null, null ); etag( "table" ); p( isubmit( "_oik_batchmove_filter", "Filter", null, "button-primary" ) ); etag( "form" ); }View on GitHub View on Trac