How to Hide the "SyncFields" Admin Menu

function plt_hide_syncfields_menus() {
	//Hide the "SyncFields" menu.
	remove_menu_page('syncfields');
}

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

Where do I put this code?