How to Hide the "DevBrothers" Admin Menu

function plt_hide_devbrothers_admin_panel_menus() {
	//Hide the "DevBrothers" menu.
	remove_menu_page('devbrothers');
}

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

Where do I put this code?