I've accumulated quite a list of <meta> tags on my site... most of which I don't know where I picked them up, or why. Probably some SEO article recommended them in 2009 or something, and I just added it cause, why not? LOL
So, based on modern SEO, which of these should I keep, and which should I toss?
// identical to <title> tag
<meta name="title" content="...">
// all 3 of these are identical on my sites
<meta name="subject" content="...">
<meta name="description" content="...">
<meta name="abstract" content="...">
// list of keywords, although I really don't know if it's more relevant than the actual words on the page
<meta name="keywords" content="...">
// I think these are still relevant, but I'm not 100% about "language" or "distribution"
<meta charset="UTF-8">
<meta name="language" content="English">
<meta name="distribution" content="Global">
<meta name="robots" content="All">
// eliminates duplicate listings, like index.php?lastupdate=20170125, so this should be good
<link rel="canonical" href="...">
// used for social media sharing, so this should be good
<meta property="og:title" content="...">
<meta property="og:description" content="...">
<meta property="og:image" content="...">
<meta property="og:url" content="...">
// mobile, so this should be good
<meta name="viewport" content="width=device-width, initial-scale=1.0">
// absolutely no idea what this is
<link rel="P3Pv1" href="/w3c/p3p.xml">