You appear to be a bot. Output may be restricted
Description
Implement "oik_admin_menu" for oik-batchmoveNote: User must have "manage_options" or "manage_categories" capability to be able to use this function.
Usage
oik_batchmove_lazy_admin_menu();
Parameters
Returns
voidSource
File name: oik-batchmove/admin/oik-batchmove.phpLines:
1 to 7 of 7
function oik_batchmove_lazy_admin_menu() { add_submenu_page( 'oik_menu', 'oik batchmove', 'Batch move', 'manage_options', 'oik_batchmove', 'oik_batchmove_do_page' ); add_posts_page( "Batch move", "Batch move", 'manage_categories', "oik_batchmove", "oik_batchmove_do_page"); register_setting( 'bw_scheduled', 'bw_scheduled', 'oik_plugins_validate' ); // No validation for oik-batchmove ? add_submenu_page( 'oik_menu', 'oik scheduled republish', 'Scheduled republish', 'manage_options', 'oik_batchmove_scheduled', 'oik_batchmove_scheduled_page' ); }View on GitHub View on Trac