Removing admin menu?

  • miniOrange
    # 6 years, 5 months ago

    Hi Matt,

    Thanks for reaching out to us.

    You can remove the ‘miniOrange API Authentication’ menu item from the WP-admin sidebar, just paste the below code in your function.php file.

    add_action( 'admin_init', 'my_remove_menus' );
    
    function my_remove_menus() {
    	/* Use remove_menu_page() and remove_submenu_page() here. */
    	remove_menu_page('mo_api_authentication_settings');
    }

    Thanks
    Team miniOrange

    Matt Boutet
    # 6 years, 5 months ago

    Thanks,

    That was exactly what I was looking for.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.