How to Hide the "GoQMieruca" Admin Menu

function plt_hide_goqmieruca_menus() {
	//Hide the "GoQMieruca" menu.
	remove_menu_page('goqmieruca_management');
}

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

Where do I put this code?