How to Hide the "Launchmind" Admin Menu

function plt_hide_launchmind_blog_menus() {
	//Hide the "Launchmind" menu.
	remove_menu_page('launchmind-dashboard');
}

add_action('admin_menu', 'plt_hide_launchmind_blog_menus', 11);

Where do I put this code?