How to Hide the "BetterBlocks" Admin Menu

function plt_hide_betterblocks_menus() {
	//Hide the "Tools → BetterBlocks" menu.
	remove_submenu_page('tools.php', 'betterblocks-settings');
}

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

Where do I put this code?