How to Hide the "Meeting List" Admin Menu

function plt_hide_bread_menus() {
	//Hide the "Meeting List" menu.
	remove_menu_page('bmlt-meeting-list.php');
}

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

Where do I put this code?