How to Hide the "Semi-Private Comments" Admin Menu

function plt_hide_semi_private_comments_menus() {
	//Hide the "Settings → Semi-Private Comments" menu.
	remove_submenu_page('options-general.php', 'semi-private-comments/semiprivate_comments.php');
}

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

Where do I put this code?