How to Hide the "Useful Blocks" Admin Menu

function plt_hide_useful_blocks_menus() {
	//Hide the "Useful Blocks" menu.
	remove_menu_page('useful_blocks');
}

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

Where do I put this code?