How to Hide the "Fantastic Content Protector Free" Admin Menu

function plt_hide_fantastic_content_protector_free_menus() {
	//Hide the "Settings → Fantastic Content Protector Free" menu.
	remove_submenu_page('options-general.php', 'content_protector_free');
}

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

Where do I put this code?