How to Hide the "Demo Contents" Admin Menu

function plt_hide_famethemes_demo_importer_menus() {
	//Hide the "Tools → Demo Contents" menu.
	remove_submenu_page('tools.php', 'famethemes-demo-importer');
}

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

Where do I put this code?