How to Hide Smart Custom Fields Admin Menus

function plt_hide_smart_custom_fields_menus() {
	//Hide the "Smart Custom Fields" menu.
	remove_menu_page('edit.php?post_type=smart-custom-fields');
	//Hide the "Smart Custom Fields → Smart Custom Fields" menu.
	remove_submenu_page('edit.php?post_type=smart-custom-fields', 'edit.php?post_type=smart-custom-fields');
	//Hide the "Smart Custom Fields → Add New" menu.
	remove_submenu_page('edit.php?post_type=smart-custom-fields', 'post-new.php?post_type=smart-custom-fields');
}

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

Where do I put this code?