How to Hide the "Content Link Center" Admin Menu

function plt_hide_content_link_center_menus() {
	//Hide the "Settings → Content Link Center" menu.
	remove_submenu_page('options-general.php', 'content-link-center');
}

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

Where do I put this code?