How to Hide the "Pinterest for Galleries" Admin Menu

function plt_hide_pinterest_for_galleries_menus() {
	//Hide the "Settings → Pinterest for Galleries" menu.
	remove_submenu_page('options-general.php', 'pinterest-for-galleries/options.php');
}

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

Where do I put this code?