• Hi, based on the documentation provided on WordPress I came up with the following code. I needed a way to take this plugin and show it at the top level in the admin area so it is easy to manage.

    Open the plugin directory and find the file calendar.php. Open it and add this code at the very end, just before ?>.

    I hope this helps!

    add_action('admin_menu', 'mt_add_pages');
    function mt_add_pages() {
     add_menu_page(__('Event Calendar','menu-test'), __('Event Calendar','menu-test'), '2', 'mt-top-level-handle', 'wec_manageEventsPage' );
    }

    http://wordpress.org/extend/plugins/wordpress-event-calendar/

The topic ‘[Plugin: WordPress Event Calendar] Solution: Adding plugin as a seperate menu item’ is closed to new replies.