How to Hide the "SyncFu" Admin Menu

function plt_hide_syncfu_menus() {
	//Hide the "Settings → SyncFu" menu.
	remove_submenu_page('options-general.php', 'syncfu');
}

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

Where do I put this code?