How to Hide the "Dynamic Widgets" Admin Menu

function plt_hide_dynamic_widgets_menus() {
	//Hide the "Appearance → Dynamic Widgets" menu.
	remove_submenu_page('themes.php', 'dynwid-config');
}

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

Where do I put this code?