Skip to content
blobaugh edited this page Jan 21, 2013 · 11 revisions

wpet_admin_menu_items

Add/Remove submenu items from the Tickets menu in wp-admin.

Sends an array of menu items. Uses the same format as the WordPress add_submenu_page()

Example

add_filter( 'wpet_admin_menu_items', $menu ); public function menu( $menu ) { $menu[] = array( 'asf', 'asf', 'add_users', 'asf', array( &$this, 'vtReporting' ) ); return $menu; }

Clone this wiki locally